public enum TaskDelegateState extends java.lang.Enum<TaskDelegateState>
| Enum Constant and Description |
|---|
ACCEPTED
Specifies that the task has been declined.
|
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 TaskDelegateState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskDelegateState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskDelegateState NO_MATCH
public static final TaskDelegateState OWN_NEW
public static final TaskDelegateState OWNED
public static final TaskDelegateState ACCEPTED
public static final TaskDelegateState DECLINED
public static final TaskDelegateState NONE
public static TaskDelegateState[] values()
for (TaskDelegateState c : TaskDelegateState.values()) System.out.println(c);
public static TaskDelegateState 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