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="East"/>
     <enumeration value="West"/>
     <enumeration value="True"/>
     <enumeration value="Grid"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| EASTDeclination is East of True North | 
| GRIDStation is oriented to Grid North | 
| TRUEStation is oriented to True North in an area in which the local variation is not zero. | 
| WESTDeclination 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 EAST
public static final StationDeclinationEWT WEST
public static final StationDeclinationEWT TRUE
public static final StationDeclinationEWT GRID
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 © 2020. All rights reserved.