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="-"/> <enumeration value="+"/> <enumeration value="space"/> </restriction> </simpleType>
Enum Constant and Description |
---|
VALUE_1
The communication frequency or navaid limitation is out to a specified distance.
|
VALUE_2
The communication frequency is used or the navaid limitation applies beyond a specified distance
|
VALUE_3
no restrictions/limitations apply
|
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 VALUE_1
public static final DistanceDescription VALUE_2
public static final DistanceDescription VALUE_3
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 © 2017. All rights reserved.