public static enum WorklistConstants.WorklistItemState extends java.lang.Enum<WorklistConstants.WorklistItemState>
| Enum Constant and Description |
|---|
ASSIGNED
The item has been assigned or accepted (only to be started by one user).
|
AVAILABLE
The item is available for execution (users may accept/assign the item, or
directly start it).
|
ENQUIRED
The item has been finished, but an enquiry is still open with an unread
reply.
|
STARTED
The item has been started.
|
SUSPENDED
The item has been suspended and will be resumed later.
|
| Modifier and Type | Method and Description |
|---|---|
static WorklistConstants.WorklistItemState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorklistConstants.WorklistItemState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorklistConstants.WorklistItemState AVAILABLE
public static final WorklistConstants.WorklistItemState ASSIGNED
public static final WorklistConstants.WorklistItemState STARTED
public static final WorklistConstants.WorklistItemState SUSPENDED
public static final WorklistConstants.WorklistItemState ENQUIRED
public static WorklistConstants.WorklistItemState[] values()
for (WorklistConstants.WorklistItemState c : WorklistConstants.WorklistItemState.values()) System.out.println(c);
public static WorklistConstants.WorklistItemState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null