public enum UESProcessState extends java.lang.Enum<UESProcessState>
| Enum Constant and Description | 
|---|
ALLOCATED
Process resource was allocated to be executed. 
 | 
CREATED
Process is created. 
 | 
ERROR
Process did not finish (terminated due to some serious problem). 
 | 
FAILED
Process has failed (completed but with some problems). 
 | 
FINISHED
Process is finished (completed successfully). 
 | 
RUNNING
Process is running. 
 | 
TERMINATED
Process was terminated from outside. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static UESProcessState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static UESProcessState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
for (UESProcessState c : UESProcessState.values()) System.out.println(c);
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 null