public enum DirectionDatumType extends Enum<DirectionDatumType>
Java class for DirectionDatumType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DirectionDatumType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="geodetic"/>
<enumeration value="magnetic"/>
<enumeration value="militaryGrid"/>
<enumeration value="relative"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GEODETIC
Geodetic: Referenced to the direction of the geographic North Pole.
|
MAGNETIC
Magnetic: Referenced to the direction of the magnetic North Pole.
|
MILITARY_GRID
Military Grid: Referenced to the direction of "north" in a military grid established by a suitable map-projection, for example Universal Transverse Mercator (UTM).
|
RELATIVE
Relative; Referenced to a direction established by the context of use (for example: the heading of a vessel).
|
| Modifier and Type | Method and Description |
|---|---|
static DirectionDatumType |
fromValue(String v) |
String |
value() |
static DirectionDatumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirectionDatumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionDatumType GEODETIC
public static final DirectionDatumType MAGNETIC
public static final DirectionDatumType MILITARY_GRID
public static final DirectionDatumType RELATIVE
public static DirectionDatumType[] values()
for (DirectionDatumType c : DirectionDatumType.values()) System.out.println(c);
public static DirectionDatumType 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 nullpublic String value()
public static DirectionDatumType fromValue(String v)
Copyright © 2014–2016 Pink Summit, LLC. All rights reserved.