public static enum ExecutionStateEvent.EventName extends Enum<ExecutionStateEvent.EventName>
| Enum Constant and Description |
|---|
ExecutionCancel
The Execution is canceled.
|
ExecutionCompleted
The Execution has completed.
|
ExecutionExternalProgress
Event reporting on the progress of the execution of a component external to the engine.
|
ExecutionPause
The Execution is paused.
|
ExecutionPerformance
Event reporting performance measurements.
|
ExecutionProgress
Event reporting on the progress of the execution.
|
ExecutionResume
The Execution should resume.
|
ExecutionStarted
The Execution has started.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionStateEvent.EventName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionStateEvent.EventName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionStateEvent.EventName ExecutionCompleted
public static final ExecutionStateEvent.EventName ExecutionStarted
public static final ExecutionStateEvent.EventName ExecutionPause
public static final ExecutionStateEvent.EventName ExecutionResume
public static final ExecutionStateEvent.EventName ExecutionCancel
public static final ExecutionStateEvent.EventName ExecutionProgress
public static final ExecutionStateEvent.EventName ExecutionExternalProgress
public static final ExecutionStateEvent.EventName ExecutionPerformance
public static ExecutionStateEvent.EventName[] values()
for (ExecutionStateEvent.EventName c : ExecutionStateEvent.EventName.values()) System.out.println(c);
public static ExecutionStateEvent.EventName 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 nullCopyright © 2015. All Rights Reserved.