public enum AltitudeCondition extends Enum<AltitudeCondition>
Java class for AltitudeCondition.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="AltitudeCondition">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="WhicheverIsLater"/>
     <enumeration value="WhicheverIsEarlier"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| WHICHEVER_IS_EARLIERAt or above altitude specified in the atOrAbove field of the Altitude Constraint. | 
| WHICHEVER_IS_LATERAt or above altitude specified in the atOrAbove field of the Altitude Constraint. | 
| Modifier and Type | Method and Description | 
|---|---|
| static AltitudeCondition | fromValue(String v) | 
| String | value() | 
| static AltitudeCondition | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AltitudeCondition[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AltitudeCondition WHICHEVER_IS_LATER
public static final AltitudeCondition WHICHEVER_IS_EARLIER
public static AltitudeCondition[] values()
for (AltitudeCondition c : AltitudeCondition.values()) System.out.println(c);
public static AltitudeCondition 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 AltitudeCondition fromValue(String v)
Copyright © 2020. All rights reserved.