public enum OperatorActionStatusEnum extends java.lang.Enum<OperatorActionStatusEnum>
Java-Klasse für OperatorActionStatusEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<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 and Description |
---|
APPROVED
The action has been approved by the recipient of the request but activity to implement the action has not yet commenced.
|
BEING_IMPLEMENTED
The action is in the process of being implemented.
|
BEING_TERMINATED
The action is in the process of being terminated either because the action has reached the end of its validity period or because new circumstances have arisen and its termination has been requested, e.g. because of a traffic jam on the alternative route.
|
IMPLEMENTED
The action is fully implemented.
|
REJECTED
The action has been rejected by the recipient of the request and hence is not implemented.
|
REQUESTED
A request, either internal or external, has been received to implement an action.
|
TERMINATION_REQUESTED
A request, either internal or external, has been received to terminate the action, but activity to terminate the action has not yet commenced.
|
Modifier and Type | Method and Description |
---|---|
static OperatorActionStatusEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static OperatorActionStatusEnum |
valueOf(java.lang.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.
|
public static final OperatorActionStatusEnum REQUESTED
public static final OperatorActionStatusEnum APPROVED
public static final OperatorActionStatusEnum BEING_IMPLEMENTED
public static final OperatorActionStatusEnum IMPLEMENTED
public static final OperatorActionStatusEnum REJECTED
public static final OperatorActionStatusEnum TERMINATION_REQUESTED
public static final OperatorActionStatusEnum BEING_TERMINATED
public static OperatorActionStatusEnum[] values()
for (OperatorActionStatusEnum c : OperatorActionStatusEnum.values()) System.out.println(c);
public static OperatorActionStatusEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static OperatorActionStatusEnum fromValue(java.lang.String v)