Enum Class WorklistConstants.WorklistItemState

java.lang.Object
java.lang.Enum<WorklistConstants.WorklistItemState>
de.aristaflow.adept2.model.globals.WorklistConstants.WorklistItemState
All Implemented Interfaces:
Serializable, Comparable<WorklistConstants.WorklistItemState>, java.lang.constant.Constable
Enclosing class:
WorklistConstants

public static enum WorklistConstants.WorklistItemState extends Enum<WorklistConstants.WorklistItemState>
The state of a worklist item.
  • Enum Constant Details

    • AVAILABLE

      public static final WorklistConstants.WorklistItemState AVAILABLE
      The item is available for execution (users may accept/assign the item, or directly start it). Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_ACTIVATED
    • ASSIGNED

      public static final WorklistConstants.WorklistItemState ASSIGNED
      The item has been assigned or accepted (only to be started by one user). Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_SELECTED
    • STARTED

      public static final WorklistConstants.WorklistItemState STARTED
      The item has been started. Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_RUNNING
    • SUSPENDED

      public static final WorklistConstants.WorklistItemState SUSPENDED
      The item has been suspended and will be resumed later. Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_SUSPENDED
    • ENQUIRED

      public static final WorklistConstants.WorklistItemState ENQUIRED
      The item has been finished, but an enquiry is still open with an unread reply. Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_ENQUIRED An item in this state may neither be delegated nor be subject of a substitution rule since the item is just for information purpose for the initiator of non- replied enquiries for already finished process steps.
  • Method Details

    • values

      public static WorklistConstants.WorklistItemState[] 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 WorklistConstants.WorklistItemState 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