public enum TimeCode extends Enum<TimeCode>
Java class for TimeCode.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="TimeCode">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="ContinuousIncludingHolidays"/>
     <enumeration value="ContinuousExcludingHolidays"/>
     <enumeration value="SpecifiedExcludingHolidays"/>
     <enumeration value="SpecifiedIncludingHolidays"/>
     <enumeration value="Complex"/>
     <enumeration value="ByNotam"/>
     <enumeration value="Unspecified"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| BY_NOTAMActive times announced by NOTAM | 
| COMPLEXActivation Times are too complex for Time of Operation format and are provided in the timeNarrative field | 
| CONTINUOUS_EXCLUDING_HOLIDAYSActive Continuously, excluding holidays | 
| CONTINUOUS_INCLUDING_HOLIDAYSActive Continuously, including holidays | 
| SPECIFIED_EXCLUDING_HOLIDAYSActive times are provided in Time of Operation record and exclude holidays | 
| SPECIFIED_INCLUDING_HOLIDAYSActive times are provided in Time of Operation record and include holidays | 
| UNSPECIFIEDActive times are not specified in source documentation | 
| Modifier and Type | Method and Description | 
|---|---|
| static TimeCode | fromValue(String v) | 
| String | value() | 
| static TimeCode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TimeCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TimeCode CONTINUOUS_INCLUDING_HOLIDAYS
public static final TimeCode CONTINUOUS_EXCLUDING_HOLIDAYS
public static final TimeCode SPECIFIED_EXCLUDING_HOLIDAYS
public static final TimeCode SPECIFIED_INCLUDING_HOLIDAYS
public static final TimeCode COMPLEX
public static final TimeCode BY_NOTAM
public static final TimeCode UNSPECIFIED
public static TimeCode[] values()
for (TimeCode c : TimeCode.values()) System.out.println(c);
public static TimeCode 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 © 2020. All rights reserved.