public static enum Bounds.ParseMethod extends java.lang.Enum<Bounds.ParseMethod>
Bounds.Bounds(String, String, ParseMethod)
constructorEnum Constant and Description |
---|
LEFT_BOTTOM_RIGHT_TOP
Order: left, bottom, right, top
|
MINLAT_MINLON_MAXLAT_MAXLON
Order: minlat, minlon, maxlat, maxlon
|
Modifier and Type | Method and Description |
---|---|
static Bounds.ParseMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bounds.ParseMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bounds.ParseMethod MINLAT_MINLON_MAXLAT_MAXLON
public static final Bounds.ParseMethod LEFT_BOTTOM_RIGHT_TOP
public static Bounds.ParseMethod[] values()
for (Bounds.ParseMethod c : Bounds.ParseMethod.values()) System.out.println(c);
public static Bounds.ParseMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null