public enum PrecisionApproachCategory extends Enum<PrecisionApproachCategory>
Java class for PrecisionApproachCategory.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PrecisionApproachCategory">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="IlsLocOnly"/>
<enumeration value="IlsMlsGlsCat1"/>
<enumeration value="IlsMlsGlsCat2"/>
<enumeration value="IlsMlsGlsCat3"/>
<enumeration value="Igs"/>
<enumeration value="LdaGlideslope"/>
<enumeration value="LdaNoGlideslope"/>
<enumeration value="SdfGlideslope"/>
<enumeration value="SdfNoGlideSlope"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
IGS
IGS Facility
|
ILS_LOC_ONLY
ILS Localizer Only, No Glideslope
|
ILS_MLS_GLS_CAT_1
ILS Localizer/MLS/GLS Category I
|
ILS_MLS_GLS_CAT_2
ILS Localizer/MLS/GLS Category II
|
ILS_MLS_GLS_CAT_3
ILS Localizer/MLS/GLS Category III
|
LDA_GLIDESLOPE
LDA Facility with Glideslope
|
LDA_NO_GLIDESLOPE
LDA Facility, no Glideslope
|
SDF_GLIDESLOPE
SDF Facility with Glideslope
|
SDF_NO_GLIDE_SLOPE
SDF Facility, no Glideslope
|
| Modifier and Type | Method and Description |
|---|---|
static PrecisionApproachCategory |
fromValue(String v) |
String |
value() |
static PrecisionApproachCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrecisionApproachCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrecisionApproachCategory ILS_LOC_ONLY
public static final PrecisionApproachCategory ILS_MLS_GLS_CAT_1
public static final PrecisionApproachCategory ILS_MLS_GLS_CAT_2
public static final PrecisionApproachCategory ILS_MLS_GLS_CAT_3
public static final PrecisionApproachCategory IGS
public static final PrecisionApproachCategory LDA_GLIDESLOPE
public static final PrecisionApproachCategory LDA_NO_GLIDESLOPE
public static final PrecisionApproachCategory SDF_GLIDESLOPE
public static final PrecisionApproachCategory SDF_NO_GLIDE_SLOPE
public static PrecisionApproachCategory[] values()
for (PrecisionApproachCategory c : PrecisionApproachCategory.values()) System.out.println(c);
public static PrecisionApproachCategory 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 PrecisionApproachCategory fromValue(String v)
Copyright © 2020. All rights reserved.