public enum DistanceDescription extends Enum<DistanceDescription>
Java class for DistanceDescription.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DistanceDescription">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OutToSpecifiedDistance"/>
<enumeration value="AppliesBeyondDistance"/>
<enumeration value="NoRestriction"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
APPLIES_BEYOND_DISTANCE
The communication frequency is used or the navaid limitation applies beyond a specified distance
|
NO_RESTRICTION
no restrictions/limitations apply
|
OUT_TO_SPECIFIED_DISTANCE
The communication frequency or navaid limitation is out to a specified distance.
|
| Modifier and Type | Method and Description |
|---|---|
static DistanceDescription |
fromValue(String v) |
String |
value() |
static DistanceDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistanceDescription[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceDescription OUT_TO_SPECIFIED_DISTANCE
public static final DistanceDescription APPLIES_BEYOND_DISTANCE
public static final DistanceDescription NO_RESTRICTION
public static DistanceDescription[] values()
for (DistanceDescription c : DistanceDescription.values()) System.out.println(c);
public static DistanceDescription 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 DistanceDescription fromValue(String v)
Copyright © 2020. All rights reserved.