public enum AirwayQualifier2 extends Enum<AirwayQualifier2>
Java class for AirwayQualifier2.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="AirwayQualifier2">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="FixRelatedTransitionRequired"/>
     <enumeration value="ParallelOffsetRequired"/>
     <enumeration value="ToacRequired"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| FIX_RELATED_TRANSITION_REQUIREDFix Related Transition (FRT) required | 
| PARALLEL_OFFSET_REQUIREDParallel Offset Required | 
| TOAC_REQUIREDTOAC Required | 
| Modifier and Type | Method and Description | 
|---|---|
| static AirwayQualifier2 | fromValue(String v) | 
| String | value() | 
| static AirwayQualifier2 | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AirwayQualifier2[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AirwayQualifier2 FIX_RELATED_TRANSITION_REQUIRED
public static final AirwayQualifier2 PARALLEL_OFFSET_REQUIRED
public static final AirwayQualifier2 TOAC_REQUIRED
public static AirwayQualifier2[] values()
for (AirwayQualifier2 c : AirwayQualifier2.values()) System.out.println(c);
public static AirwayQualifier2 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 AirwayQualifier2 fromValue(String v)
Copyright © 2020. All rights reserved.