Enum Class WorkflowInstanceInclude

java.lang.Object
java.lang.Enum<WorkflowInstanceInclude>
io.nflow.engine.service.WorkflowInstanceInclude
All Implemented Interfaces:
Serializable, Comparable<WorkflowInstanceInclude>, Constable

public enum WorkflowInstanceInclude extends Enum<WorkflowInstanceInclude>
The properties of a workflow instance that can be loaded if needed when using WorkflowInstanceService.getWorkflowInstance.
  • Enum Constant Details

    • CURRENT_STATE_VARIABLES

      public static final WorkflowInstanceInclude CURRENT_STATE_VARIABLES
      The most recent values of all state variables (WorkflowInstance.stateVariables).
    • CHILD_WORKFLOW_IDS

      public static final WorkflowInstanceInclude CHILD_WORKFLOW_IDS
      The child workflow identifiers (WorkflowInstance.childWorkflows).
    • ACTIONS

      public static final WorkflowInstanceInclude ACTIONS
      The actions related to this workflow instance (WorkflowInstance.actions).
    • ACTION_STATE_VARIABLES

      public static final WorkflowInstanceInclude ACTION_STATE_VARIABLES
      The state variables for each action. Ignored if ACTIONS are not loaded (WorkflowInstanceAction.updatedStateVariables).
  • Method Details

    • values

      public static WorkflowInstanceInclude[] 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

      public static WorkflowInstanceInclude valueOf(String name)
      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 name
      NullPointerException - if the argument is null