public enum TaskOwnership extends java.lang.Enum<TaskOwnership>
| Enum Constant and Description |
|---|
DELEGATED
Specifies that task has been delegated to another user.
|
NEW
Specifies that task has not yet been assigned to a user.
|
NONE
None.
|
OWN
Specifies that task is assigned to the current user.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskOwnership |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskOwnership[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskOwnership NEW
public static final TaskOwnership DELEGATED
public static final TaskOwnership OWN
public static final TaskOwnership NONE
public static TaskOwnership[] values()
for (TaskOwnership c : TaskOwnership.values()) System.out.println(c);
public static TaskOwnership 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