Enum Class WorkflowInstance.WorkflowInstanceStatus
java.lang.Object
java.lang.Enum<WorkflowInstance.WorkflowInstanceStatus>
io.nflow.engine.workflow.instance.WorkflowInstance.WorkflowInstanceStatus
- All Implemented Interfaces:
Serializable,Comparable<WorkflowInstance.WorkflowInstanceStatus>,Constable
- Enclosing class:
WorkflowInstance
public static enum WorkflowInstance.WorkflowInstanceStatus
extends Enum<WorkflowInstance.WorkflowInstanceStatus>
Describes the status for workflow instance.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWorkflow instance has been created but the processing has not been started yetA workflow state method is executingWorkflow instance has reached an end stateWorkflow instance processing has been startedWorkflow instance is waiting for manual action -
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
-
created
Workflow instance has been created but the processing has not been started yet -
inProgress
Workflow instance processing has been started -
finished
Workflow instance has reached an end state -
manual
Workflow instance is waiting for manual action -
executing
A workflow state method is executing
-
-
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
-