public enum TimeCodeAirwaysRestriction extends Enum<TimeCodeAirwaysRestriction>
Java class for TimeCodeAirwaysRestriction.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TimeCodeAirwaysRestriction"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="C"/> <enumeration value="H"/> <enumeration value="S"/> <enumeration value="T"/> </restriction> </simpleType>
Enum Constant and Description |
---|
C
Active Continuously, including holidays
|
H
Active Continuously, excluding holidays
|
S
Active times are provided in Time of Operation format and exclude holidays
|
T
Active times are provided in Time of Operation format and include holidays
|
Modifier and Type | Method and Description |
---|---|
static TimeCodeAirwaysRestriction |
fromValue(String v) |
String |
value() |
static TimeCodeAirwaysRestriction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeCodeAirwaysRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeCodeAirwaysRestriction C
public static final TimeCodeAirwaysRestriction H
public static final TimeCodeAirwaysRestriction S
public static final TimeCodeAirwaysRestriction T
public static TimeCodeAirwaysRestriction[] values()
for (TimeCodeAirwaysRestriction c : TimeCodeAirwaysRestriction.values()) System.out.println(c);
public static TimeCodeAirwaysRestriction 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 TimeCodeAirwaysRestriction fromValue(String v)
Copyright © 2017. All rights reserved.