public enum WorkflowInstanceInclude extends Enum<WorkflowInstanceInclude>
| Enum Constant and Description |
|---|
ACTION_STATE_VARIABLES
The state variables for each action.
|
ACTIONS
The actions related to this workflow instance (WorkflowInstance.actions).
|
CHILD_WORKFLOW_IDS
The child workflow identifiers (WorkflowInstance.childWorkflows).
|
CURRENT_STATE_VARIABLES
The most recent values of all state variables (WorkflowInstance.stateVariables).
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowInstanceInclude |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowInstanceInclude[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowInstanceInclude CURRENT_STATE_VARIABLES
public static final WorkflowInstanceInclude CHILD_WORKFLOW_IDS
public static final WorkflowInstanceInclude ACTIONS
public static final WorkflowInstanceInclude ACTION_STATE_VARIABLES
public static WorkflowInstanceInclude[] values()
for (WorkflowInstanceInclude c : WorkflowInstanceInclude.values()) System.out.println(c);
public static WorkflowInstanceInclude 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.