public static enum ExecutionHistory.StateChange extends java.lang.Enum<ExecutionHistory.StateChange>
stateChange column. Their
code is the identifying property in the log.| Enum Constant and Description |
|---|
DATA_FLUSHED
Data flushed
|
INSTANCE_CHANGED
process instance was changed
|
INSTANCE_FAILED
process instance failed
|
INSTANCE_FINISHED
process instance finished
|
INSTANCE_RESUMED
process instance resumed
|
INSTANCE_STARTED
process instance started
|
INSTANCE_SUSPENDED
process instance suspended
|
NODE_ACTIVATED
node activated
|
NODE_DESELECTED
node deselected
|
NODE_FAILED
node failed
|
NODE_FINISHED
node (successfully) finished
|
NODE_PROMOTED
Node has been promoted.
|
NODE_RESET_HARD
node reset (hard)
|
NODE_RESET_SOFT
node reset (soft)
|
NODE_RESET_TO
node reset to
|
NODE_RESUMED
node resumed
|
NODE_SELECTED
node selected
|
NODE_SKIPPED
node skipped
|
NODE_STARTED
node started
|
NODE_SUPPRESSED
Node has been suppressed.
|
NODE_SUSPENDED
node suspended
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getCode()
Returns the identifying code of this node state change.
|
static ExecutionHistory.StateChange |
valueOf(byte code)
Returns the node state change for the given code or
null if the
code is not recognised. |
static ExecutionHistory.StateChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionHistory.StateChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionHistory.StateChange INSTANCE_STARTED
public static final ExecutionHistory.StateChange INSTANCE_SUSPENDED
public static final ExecutionHistory.StateChange INSTANCE_RESUMED
public static final ExecutionHistory.StateChange INSTANCE_FINISHED
public static final ExecutionHistory.StateChange INSTANCE_FAILED
public static final ExecutionHistory.StateChange INSTANCE_CHANGED
public static final ExecutionHistory.StateChange NODE_ACTIVATED
public static final ExecutionHistory.StateChange NODE_SELECTED
public static final ExecutionHistory.StateChange NODE_DESELECTED
public static final ExecutionHistory.StateChange NODE_STARTED
public static final ExecutionHistory.StateChange NODE_SUSPENDED
public static final ExecutionHistory.StateChange NODE_RESUMED
public static final ExecutionHistory.StateChange NODE_RESET_HARD
public static final ExecutionHistory.StateChange NODE_RESET_SOFT
public static final ExecutionHistory.StateChange NODE_RESET_TO
public static final ExecutionHistory.StateChange NODE_SKIPPED
public static final ExecutionHistory.StateChange NODE_FINISHED
public static final ExecutionHistory.StateChange NODE_FAILED
public static final ExecutionHistory.StateChange NODE_SUPPRESSED
public static final ExecutionHistory.StateChange NODE_PROMOTED
public static final ExecutionHistory.StateChange DATA_FLUSHED
public static ExecutionHistory.StateChange[] values()
for (ExecutionHistory.StateChange c : ExecutionHistory.StateChange.values()) System.out.println(c);
public static ExecutionHistory.StateChange 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 byte getCode()
valueOf(byte) to get the associated node state change for a
code.public static ExecutionHistory.StateChange valueOf(byte code)
null if the
code is not recognised.code - the code for which to find the node state change