public enum InvocationState extends 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 |
|---|
CANCELLED
Cnclld = Cancelled.
|
CANCELLED_MANUALLY
CnclldMan = Cancelled Manually.
|
FAILED
The execution has been failed.
|
FINISHED
Fin = Finished.
|
FINISHED_MOD
FinMod = Finished with modification.
|
STARTED
Start = Started.
|
WAITING
Wait = Waiting.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationState |
fromValue(String v) |
String |
value() |
static InvocationState |
valueOf(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 FINISHED_MOD
public static final InvocationState FAILED
public static InvocationState[] values()
for (InvocationState c : InvocationState.values()) System.out.println(c);
public static InvocationState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static InvocationState fromValue(String v)
Copyright © 2017. All rights reserved.