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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe item has been assigned or accepted (only to be started by one user).The item is available for execution (users may accept/assign the item, or directly start it).The item has been finished, but an enquiry is still open with an unread reply.The item has been started.The item has been suspended and will be resumed later. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static WorklistConstants.WorklistItemState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
The item has been started. Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_RUNNING -
SUSPENDED
The item has been suspended and will be resumed later. Corresponds to de.aristaflow.adept2.base.globals.ProcessConstants.NodeState#NS_SUSPENDED -
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
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
-