public enum NOTAM extends Enum<NOTAM>
Java class for NOTAM.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="NOTAM">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Y"/>
     <enumeration value="space"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| SPACEThe field will be blank to indicate the others cases. | 
| YWhen used on primary records, the area is active only by NOTAM and there will be no continuation record. | 
| Modifier and Type | Method and Description | 
|---|---|
| static NOTAM | fromValue(String v) | 
| String | value() | 
| static NOTAM | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static NOTAM[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final NOTAM Y
public static final NOTAM SPACE
public static NOTAM[] values()
for (NOTAM c : NOTAM.values()) System.out.println(c);
public static NOTAM 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()
Copyright © 2017. All rights reserved.