|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ProcessContext.ProcessStatus>
org.javasteps.ProcessContext.ProcessStatus
public static enum ProcessContext.ProcessStatus
The Status enum marks the status of the process
Enum Constant Summary | |
---|---|
FAILED
The process was stopped because some action step failed |
|
IDLE
The process is not runnning yet |
|
RUNNING
The process is running |
|
STOPPED
The process was stopped by the user |
|
SUCCESS
The process finished normally |
Method Summary | |
---|---|
static ProcessContext.ProcessStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ProcessContext.ProcessStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ProcessContext.ProcessStatus IDLE
public static final ProcessContext.ProcessStatus RUNNING
public static final ProcessContext.ProcessStatus SUCCESS
public static final ProcessContext.ProcessStatus STOPPED
public static final ProcessContext.ProcessStatus FAILED
Method Detail |
---|
public static final ProcessContext.ProcessStatus[] values()
for(ProcessContext.ProcessStatus c : ProcessContext.ProcessStatus.values()) System.out.println(c);
public static ProcessContext.ProcessStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |