Enum OperatorActionStatusEnum
- java.lang.Object
-
- java.lang.Enum<OperatorActionStatusEnum>
-
- eu.datex2.siri14.schema._1_0._1_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="approved"/> <enumeration value="implemented"/> <enumeration value="inProgress"/> <enumeration value="over"/> <enumeration value="requested"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDAction is approved by the relevant authority.IMPLEMENTEDAction has been implemented.IN_PROGRESSAction is in the process of being implemented.OVERAction has been completed and is now finished.REQUESTEDPermission is being requested of the relevant authority for the action.
-
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
-
APPROVED
public static final OperatorActionStatusEnum APPROVED
Action is approved by the relevant authority.
-
IMPLEMENTED
public static final OperatorActionStatusEnum IMPLEMENTED
Action has been implemented.
-
IN_PROGRESS
public static final OperatorActionStatusEnum IN_PROGRESS
Action is in the process of being implemented.
-
OVER
public static final OperatorActionStatusEnum OVER
Action has been completed and is now finished.
-
REQUESTED
public static final OperatorActionStatusEnum REQUESTED
Permission is being requested of the relevant authority for the action.
-
-
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)
-
-