public enum IlsDmeLocation extends Enum<IlsDmeLocation>
Java class for IlsDmeLocation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IlsDmeLocation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NotCollocated"/>
<enumeration value="CollocatedLocalizer"/>
<enumeration value="CollocatedGlideSlope"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COLLOCATED_GLIDE_SLOPE
Collocated with Glide Slope
|
COLLOCATED_LOCALIZER
Collocated with localizer
|
NOT_COLLOCATED
Not collocated with Localizer or Glide Slope
|
| Modifier and Type | Method and Description |
|---|---|
static IlsDmeLocation |
fromValue(String v) |
String |
value() |
static IlsDmeLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IlsDmeLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IlsDmeLocation NOT_COLLOCATED
public static final IlsDmeLocation COLLOCATED_LOCALIZER
public static final IlsDmeLocation COLLOCATED_GLIDE_SLOPE
public static IlsDmeLocation[] values()
for (IlsDmeLocation c : IlsDmeLocation.values()) System.out.println(c);
public static IlsDmeLocation 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 IlsDmeLocation fromValue(String v)
Copyright © 2020. All rights reserved.