|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DelegationState>
org.camunda.bpm.engine.task.DelegationState
public enum DelegationState
Defines the different states of delegation that a task can be in.
Enum Constant Summary | |
---|---|
PENDING
The owner delegated the task and wants to review the result after the assignee has resolved the task. |
|
RESOLVED
The assignee has resolved the task, the assignee was set to the owner again and the owner now finds this task back in the ToDo list for review. |
Method Summary | |
---|---|
static DelegationState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DelegationState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DelegationState PENDING
RESOLVED
and
sent back to the owner. When that happens, the owner is set as
the assignee so that the owner gets this task back in the ToDo.
public static final DelegationState RESOLVED
Method Detail |
---|
public static DelegationState[] values()
for (DelegationState c : DelegationState.values()) System.out.println(c);
public static DelegationState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |