public static enum Marker.Bound extends Enum<Marker.Bound>
| Modifier and Type | Method and Description |
|---|---|
static Marker.Bound |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Marker.Bound[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Marker.Bound BELOW
public static final Marker.Bound EXACTLY
public static final Marker.Bound ABOVE
public static Marker.Bound[] values()
for (Marker.Bound c : Marker.Bound.values()) System.out.println(c);
public static Marker.Bound valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012-2015. All Rights Reserved.