Package io.nflow.engine.service
Enum Class WorkflowInstanceInclude
- All Implemented Interfaces:
Serializable
,Comparable<WorkflowInstanceInclude>
,Constable
The properties of a workflow instance that can be loaded if needed when using WorkflowInstanceService.getWorkflowInstance.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe state variables for each action.The actions related to this workflow instance (WorkflowInstance.actions).The child workflow identifiers (WorkflowInstance.childWorkflows).The most recent values of all state variables (WorkflowInstance.stateVariables). -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkflowInstanceInclude
Returns the enum constant of this class with the specified name.static WorkflowInstanceInclude[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CURRENT_STATE_VARIABLES
The most recent values of all state variables (WorkflowInstance.stateVariables). -
CHILD_WORKFLOW_IDS
The child workflow identifiers (WorkflowInstance.childWorkflows). -
ACTIONS
The actions related to this workflow instance (WorkflowInstance.actions). -
ACTION_STATE_VARIABLES
The state variables for each action. Ignored if ACTIONS are not loaded (WorkflowInstanceAction.updatedStateVariables).
-
-
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
-