Enum Class WorkflowInstanceAction.WorkflowActionType
java.lang.Object
java.lang.Enum<WorkflowInstanceAction.WorkflowActionType>
io.nflow.engine.workflow.instance.WorkflowInstanceAction.WorkflowActionType
- All Implemented Interfaces:
Serializable,Comparable<WorkflowInstanceAction.WorkflowActionType>,Constable
- Enclosing class:
WorkflowInstanceAction
public static enum WorkflowInstanceAction.WorkflowActionType
extends Enum<WorkflowInstanceAction.WorkflowActionType>
Describes the trigger for the action.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExternal change to the workflow instance.Dead executor recovery.Normal state execution.Normal state execution that resulted in failure. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
stateExecution
Normal state execution. -
stateExecutionFailed
Normal state execution that resulted in failure. -
externalChange
External change to the workflow instance. -
recovery
Dead executor recovery.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-