public static enum WorkflowInstanceAction.WorkflowActionType extends Enum<WorkflowInstanceAction.WorkflowActionType>
| Enum Constant and Description |
|---|
externalChange
External change to the workflow instance.
|
recovery
Dead executor recovery.
|
stateExecution
Normal state execution.
|
stateExecutionFailed
Normal state execution that resulted in failure.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowInstanceAction.WorkflowActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowInstanceAction.WorkflowActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowInstanceAction.WorkflowActionType stateExecution
public static final WorkflowInstanceAction.WorkflowActionType stateExecutionFailed
public static final WorkflowInstanceAction.WorkflowActionType externalChange
public static final WorkflowInstanceAction.WorkflowActionType recovery
public static WorkflowInstanceAction.WorkflowActionType[] values()
for (WorkflowInstanceAction.WorkflowActionType c : WorkflowInstanceAction.WorkflowActionType.values()) System.out.println(c);
public static WorkflowInstanceAction.WorkflowActionType 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 © 2014–2020 Nitor Creations. All rights reserved.