public enum BoundsInfo extends Enum<BoundsInfo >
| Enum Constant and Description |
|---|
LAT_OUT_OF_BOUNDS
|
LON_LAT_OUT_OF_BOUNDS
|
LON_OUT_OF_BOUNDS
|
OK
|
| Modifier and Type | Method and Description |
|---|---|
static BoundsInfo |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static BoundsInfo |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final BoundsInfoOK
public static final BoundsInfoLAT_OUT_OF_BOUNDS
public static final BoundsInfoLON_OUT_OF_BOUNDS
public static final BoundsInfoLON_LAT_OUT_OF_BOUNDS
public static BoundsInfo[] values()
for (BoundsInfo c : BoundsInfo.values()) System.out.println(c);
public static BoundsInfovalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null