public enum EnrouteAirwayDirectionalRestriction extends Enum<EnrouteAirwayDirectionalRestriction>
Java class for EnrouteAirwayDirectionalRestriction.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnrouteAirwayDirectionalRestriction"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="F"/> <enumeration value="B"/> <enumeration value="space"/> </restriction> </simpleType>
Enum Constant and Description |
---|
B
One way in opposite direction route is coded (backward).
|
F
One way in direction route is coded (Forward).
|
SPACE
No restrictions on direction.
|
Modifier and Type | Method and Description |
---|---|
static EnrouteAirwayDirectionalRestriction |
fromValue(String v) |
String |
value() |
static EnrouteAirwayDirectionalRestriction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnrouteAirwayDirectionalRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnrouteAirwayDirectionalRestriction F
public static final EnrouteAirwayDirectionalRestriction B
public static final EnrouteAirwayDirectionalRestriction SPACE
public static EnrouteAirwayDirectionalRestriction[] values()
for (EnrouteAirwayDirectionalRestriction c : EnrouteAirwayDirectionalRestriction.values()) System.out.println(c);
public static EnrouteAirwayDirectionalRestriction 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 EnrouteAirwayDirectionalRestriction fromValue(String v)
Copyright © 2017. All rights reserved.