public enum TaskDelegationState extends java.lang.Enum<TaskDelegationState>
| Enum Constant and Description |
|---|
ACCEPTED
Specifies that the task has been accepted.
|
DECLINED
Specifies that the task has been declined.
|
NO_MATCH
Specifies that this is not a delegated task or that the task request has been created but not sent.
|
NONE
None.
|
OWN_NEW
Specifies that this is a new task request that has been sent, but the delegate has not yet responded to the task.
|
OWNED
Specifies that a task has been accepted.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskDelegationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskDelegationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskDelegationState NO_MATCH
public static final TaskDelegationState OWN_NEW
public static final TaskDelegationState OWNED
public static final TaskDelegationState ACCEPTED
public static final TaskDelegationState DECLINED
public static final TaskDelegationState NONE
public static TaskDelegationState[] values()
for (TaskDelegationState c : TaskDelegationState.values()) System.out.println(c);
public static TaskDelegationState 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