Enum OperatorActionStatusEnum
- java.lang.Object
-
- java.lang.Enum<OperatorActionStatusEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.OperatorActionStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperatorActionStatusEnum>
public enum OperatorActionStatusEnum extends Enum<OperatorActionStatusEnum>
Java class for OperatorActionStatusEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OperatorActionStatusEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="requested"/> <enumeration value="approved"/> <enumeration value="beingImplemented"/> <enumeration value="implemented"/> <enumeration value="rejected"/> <enumeration value="terminationRequested"/> <enumeration value="beingTerminated"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDBEING_IMPLEMENTEDBEING_TERMINATEDIMPLEMENTEDREJECTEDREQUESTEDTERMINATION_REQUESTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperatorActionStatusEnumfromValue(String v)Stringvalue()static OperatorActionStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperatorActionStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUESTED
public static final OperatorActionStatusEnum REQUESTED
-
APPROVED
public static final OperatorActionStatusEnum APPROVED
-
BEING_IMPLEMENTED
public static final OperatorActionStatusEnum BEING_IMPLEMENTED
-
IMPLEMENTED
public static final OperatorActionStatusEnum IMPLEMENTED
-
REJECTED
public static final OperatorActionStatusEnum REJECTED
-
TERMINATION_REQUESTED
public static final OperatorActionStatusEnum TERMINATION_REQUESTED
-
BEING_TERMINATED
public static final OperatorActionStatusEnum BEING_TERMINATED
-
-
Method Detail
-
values
public static OperatorActionStatusEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperatorActionStatusEnum c : OperatorActionStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatorActionStatusEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static OperatorActionStatusEnum fromValue(String v)
-
-