public enum Datum extends Enum<Datum>
Position
Enum Constant and Description |
---|
NAD27
North American Datum 1927
|
NAD83
North American Datum 1983
|
WGS84
World Geodetic System 1984, the default datum in GPS systems.
|
Modifier and Type | Method and Description |
---|---|
static Datum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datum WGS84
public static final Datum NAD83
public static final Datum NAD27
public static Datum[] values()
for (Datum c : Datum.values()) System.out.println(c);
public static 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 nullCopyright (C) 2010-2017 Java Marine API authors. All Rights Reserved.