public enum InvocationState extends java.lang.Enum<InvocationState>
Java class for InvocationState.
The following schema fragment specifies the expected content contained within this class.
<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="FinMod"/>
<enumeration value="Fail"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CNCLLD
Cnclld = Cancelled.
|
CNCLLD_MAN
CnclldMan = Cancelled Manually.
|
FAIL
The execution has been failed.
|
FIN
Fin = Finished.
|
FIN_MOD
FinMod = Finished with modification.
|
START
Start = Started.
|
WAIT
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 WAIT
public static final InvocationState START
public static final InvocationState CNCLLD
public static final InvocationState CNCLLD_MAN
public static final InvocationState FIN
public static final InvocationState FIN_MOD
public static final InvocationState FAIL
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)