public enum FigureOfMerit extends Enum<FigureOfMerit>
Java class for FigureOfMerit.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="FigureOfMerit">
   <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
     <enumeration value="0"/>
     <enumeration value="1"/>
     <enumeration value="2"/>
     <enumeration value="3"/>
     <enumeration value="7"/>
     <enumeration value="9"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| VALUE_1Terminal Use (generally within 25NM) | 
| VALUE_2Low Altitude Use (generally within 40NM) | 
| VALUE_3High Altitude Use (generally within 130NM) | 
| VALUE_4Extended High Altitude Use (generally beyond 130NM) | 
| VALUE_5Navaid Not included in a civil international NOTAM system | 
| VALUE_6Navaid Out of Service | 
| Modifier and Type | Method and Description | 
|---|---|
| static FigureOfMerit | fromValue(long v) | 
| long | value() | 
| static FigureOfMerit | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FigureOfMerit[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FigureOfMerit VALUE_1
public static final FigureOfMerit VALUE_2
public static final FigureOfMerit VALUE_3
public static final FigureOfMerit VALUE_4
public static final FigureOfMerit VALUE_5
public static final FigureOfMerit VALUE_6
public static FigureOfMerit[] values()
for (FigureOfMerit c : FigureOfMerit.values()) System.out.println(c);
public static FigureOfMerit 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 long value()
public static FigureOfMerit fromValue(long v)
Copyright © 2017. All rights reserved.