Enum WorkflowInstanceInclude

    • Enum Constant Detail

      • 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 Detail

      • values

        public static WorkflowInstanceInclude[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WorkflowInstanceInclude c : WorkflowInstanceInclude.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WorkflowInstanceInclude valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null