public enum ControlledASIndicator extends Enum<ControlledASIndicator>
Java class for ControlledASIndicator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ControlledASIndicator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="A"/>
<enumeration value="C"/>
<enumeration value="M"/>
<enumeration value="R"/>
<enumeration value="T"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
A
The Airport is within or below the lateral limits of Class C Airspace.
|
C
The Airport is within or below the lateral limits of a CTA.
|
M
The Airport is within or below the lateral limits of a TMA or TCA.
|
R
The Airport is within or below the lateral limits Radar Zone
|
T
The Airport is within or below the lateral limits of Class B Airspace.
|
| Modifier and Type | Method and Description |
|---|---|
static ControlledASIndicator |
fromValue(String v) |
String |
value() |
static ControlledASIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlledASIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlledASIndicator A
public static final ControlledASIndicator C
public static final ControlledASIndicator M
public static final ControlledASIndicator R
public static final ControlledASIndicator T
public static ControlledASIndicator[] values()
for (ControlledASIndicator c : ControlledASIndicator.values()) System.out.println(c);
public static ControlledASIndicator 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 ControlledASIndicator fromValue(String v)
Copyright © 2017. All rights reserved.