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="SrSs"/>
     <enumeration value="Night"/>
     <enumeration value="Continuous"/>
     <enumeration value="ActiveByNotam"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| ACTIVE_BY_NOTAMActive by NOTAM | 
| CONTINUOUSContinuous | 
| NIGHTNight Use | 
| SR_SSSR-SS | 
| 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 SR_SS
public static final TimeOfUse NIGHT
public static final TimeOfUse CONTINUOUS
public static final TimeOfUse ACTIVE_BY_NOTAM
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 © 2020. All rights reserved.