public enum MagneticTrueIndicator extends Enum<MagneticTrueIndicator>
Java class for MagneticTrueIndicator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MagneticTrueIndicator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="space"/>
<enumeration value="T"/>
<enumeration value="M"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
M
if all detail and procedure for the airport are reported in magnetic bearing,
|
SPACE
The field will be blank if details and procedures are provided in both magnetic and true for the airport.
|
T
if all detail and procedure for the airport are reported in true bearing
|
| Modifier and Type | Method and Description |
|---|---|
static MagneticTrueIndicator |
fromValue(String v) |
String |
value() |
static MagneticTrueIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MagneticTrueIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MagneticTrueIndicator SPACE
public static final MagneticTrueIndicator T
public static final MagneticTrueIndicator M
public static MagneticTrueIndicator[] values()
for (MagneticTrueIndicator c : MagneticTrueIndicator.values()) System.out.println(c);
public static MagneticTrueIndicator 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 MagneticTrueIndicator fromValue(String v)
Copyright © 2017. All rights reserved.