public enum UnitsofAltitude extends Enum<UnitsofAltitude>
Java class for UnitsofAltitude.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="UnitsofAltitude">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="F"/>
     <enumeration value="K"/>
     <enumeration value="L"/>
     <enumeration value="M"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| FRestriction Altitudes are expressed in hundreds of feet | 
| KRestriction Altitudes are expressed in metric Flight Levels | 
| LRestriction Altitudes are expressed in feet Flight Levels | 
| MRestriction Altitudes are expressed in tens of meters | 
| Modifier and Type | Method and Description | 
|---|---|
| static UnitsofAltitude | fromValue(String v) | 
| String | value() | 
| static UnitsofAltitude | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static UnitsofAltitude[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UnitsofAltitude F
public static final UnitsofAltitude K
public static final UnitsofAltitude L
public static final UnitsofAltitude M
public static UnitsofAltitude[] values()
for (UnitsofAltitude c : UnitsofAltitude.values()) System.out.println(c);
public static UnitsofAltitude 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 UnitsofAltitude fromValue(String v)
Copyright © 2017. All rights reserved.