public enum TimeOfUse extends Enum<TimeOfUse>
Java class for TimeOfUse.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="TimeOfUse">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="D"/>
     <enumeration value="N"/>
     <enumeration value="C"/>
     <enumeration value="A"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| AActive by NOTAM | 
| CContinous | 
| DSR-SS | 
| NNight Use | 
| Modifier and Type | Method and Description | 
|---|---|
| static TimeOfUse | fromValue(String v) | 
| String | value() | 
| static TimeOfUse | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TimeOfUse[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TimeOfUse D
public static final TimeOfUse N
public static final TimeOfUse C
public static final TimeOfUse A
public static TimeOfUse[] values()
for (TimeOfUse c : TimeOfUse.values()) System.out.println(c);
public static TimeOfUse 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.