public enum StationDeclinationEWT extends Enum<StationDeclinationEWT>
Java class for StationDeclinationEWT.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StationDeclinationEWT"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="E"/> <enumeration value="W"/> <enumeration value="T"/> <enumeration value="G"/> </restriction> </simpleType>
Enum Constant and Description |
---|
E
Declination is East of True North
|
G
Station is oriented to Grid North
|
T
Station is oriented to True North in an area in which the local variation is not zero.
|
W
Declination is East of West North
|
Modifier and Type | Method and Description |
---|---|
static StationDeclinationEWT |
fromValue(String v) |
String |
value() |
static StationDeclinationEWT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StationDeclinationEWT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StationDeclinationEWT E
public static final StationDeclinationEWT W
public static final StationDeclinationEWT T
public static final StationDeclinationEWT G
public static StationDeclinationEWT[] values()
for (StationDeclinationEWT c : StationDeclinationEWT.values()) System.out.println(c);
public static StationDeclinationEWT 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 StationDeclinationEWT fromValue(String v)
Copyright © 2017. All rights reserved.