public static enum GEOLocationElement.Datum extends Enum<GEOLocationElement.Datum>
Enum Constant and Description |
---|
NAD83Land |
NAD83Water |
Unknown |
WGS84 |
Modifier and Type | Method and Description |
---|---|
static GEOLocationElement.Datum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GEOLocationElement.Datum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GEOLocationElement.Datum Unknown
public static final GEOLocationElement.Datum WGS84
public static final GEOLocationElement.Datum NAD83Land
public static final GEOLocationElement.Datum NAD83Water
public static GEOLocationElement.Datum[] values()
for (GEOLocationElement.Datum c : GEOLocationElement.Datum.values()) System.out.println(c);
public static GEOLocationElement.Datum 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 null