public enum ExclusionIndicator extends Enum<ExclusionIndicator>
Java class for ExclusionIndicator.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="ExclusionIndicator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="A"/>
     <enumeration value="B"/>
     <enumeration value="F"/>
     <enumeration value="space"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| AAll altitudes in both directions of flight are restricted. | 
| BAll altitudes in the opposite direction in which the Enroute Airway is coded are restricted. | 
| FAll altitudes in the direction in which the Enroute Airway is coded are restricted. | 
| SPACEThe restriction is not an all altitude restriction. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ExclusionIndicator | fromValue(String v) | 
| String | value() | 
| static ExclusionIndicator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ExclusionIndicator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ExclusionIndicator A
public static final ExclusionIndicator B
public static final ExclusionIndicator F
public static final ExclusionIndicator SPACE
public static ExclusionIndicator[] values()
for (ExclusionIndicator c : ExclusionIndicator.values()) System.out.println(c);
public static ExclusionIndicator 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 ExclusionIndicator fromValue(String v)
Copyright © 2017. All rights reserved.