public enum InvocationState extends java.lang.Enum<InvocationState>
Java-Klasse für InvocationState.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="InvocationState">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Wait"/>
<enumeration value="Start"/>
<enumeration value="Cnclld"/>
<enumeration value="CnclldMan"/>
<enumeration value="Fin"/>
<enumeration value="Fail"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANCELLED
Cnclld = Cancelled.
|
CANCELLED_MANUALLY
CnclldMan = Cancelled Manually.
|
FAILED
The execution has been been failed.
|
FINISHED
Fin = Finished.
|
STARTED
Start = Started.
|
WAITING
Wait = Waiting.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationState |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static InvocationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvocationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationState WAITING
public static final InvocationState STARTED
public static final InvocationState CANCELLED
public static final InvocationState CANCELLED_MANUALLY
public static final InvocationState FINISHED
public static final InvocationState FAILED
public static InvocationState[] values()
for (InvocationState c : InvocationState.values()) System.out.println(c);
public static InvocationState 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 InvocationState fromValue(java.lang.String v)