public enum TimeCodePrimaryRecords extends Enum<TimeCodePrimaryRecords>
Java class for TimeCodePrimaryRecords.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="TimeCodePrimaryRecords">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="C"/>
     <enumeration value="H"/>
     <enumeration value="N"/>
     <enumeration value="P"/>
     <enumeration value="U"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| CActive Continuously, including holidays | 
| HActive Continuously, excluding holidays | 
| NActive Non-Continuously, Refer to timeOfOperations data element. | 
| PActive times announced by NOTAM | 
| UActive times are not specified in source documentation | 
| Modifier and Type | Method and Description | 
|---|---|
| static TimeCodePrimaryRecords | fromValue(String v) | 
| String | value() | 
| static TimeCodePrimaryRecords | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TimeCodePrimaryRecords[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TimeCodePrimaryRecords C
public static final TimeCodePrimaryRecords H
public static final TimeCodePrimaryRecords N
public static final TimeCodePrimaryRecords P
public static final TimeCodePrimaryRecords U
public static TimeCodePrimaryRecords[] values()
for (TimeCodePrimaryRecords c : TimeCodePrimaryRecords.values()) System.out.println(c);
public static TimeCodePrimaryRecords 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 TimeCodePrimaryRecords fromValue(String v)
Copyright © 2017. All rights reserved.