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}string">
     <enumeration value="TerminalUse"/>
     <enumeration value="LowAlt"/>
     <enumeration value="HighAlt"/>
     <enumeration value="ExtendedHighAlt"/>
     <enumeration value="NotNOTAMd"/>
     <enumeration value="OutOfService"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| EXTENDED_HIGH_ALTExtended High Altitude Use (generally beyond 130NM) | 
| HIGH_ALTHigh Altitude Use (generally within 130NM) | 
| LOW_ALTLow Altitude Use (generally within 40NM) | 
| NOT_NOTA_MDNavaid Not included in a civil international NOTAM system | 
| OUT_OF_SERVICENavaid Out of Service | 
| TERMINAL_USETerminal Use (generally within 25NM) | 
| Modifier and Type | Method and Description | 
|---|---|
| static FigureOfMerit | fromValue(String v) | 
| String | 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 TERMINAL_USE
public static final FigureOfMerit LOW_ALT
public static final FigureOfMerit HIGH_ALT
public static final FigureOfMerit EXTENDED_HIGH_ALT
public static final FigureOfMerit NOT_NOTA_MD
public static final FigureOfMerit OUT_OF_SERVICE
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 String value()
public static FigureOfMerit fromValue(String v)
Copyright © 2020. All rights reserved.