|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Task.TaskStatus>
com.sas.hls.work.workitem.Task.TaskStatus
public static enum Task.TaskStatus
TaskStatus is an enum representing the status of the task.
Enum Constant Summary | |
---|---|
ASSIGNED
If ASSIGNED, the task is assigned. |
|
CLAIMED
If CLAIMED, the task is claimed. |
|
COMPLETED
If STARTED, the task is completed. |
|
STARTED
If STARTED, the task is claimed. |
|
UNASSIGNED
If UNASSIGNED, the task is not assigned. |
|
UNCLAIMED
If UNCLAIMED, the task is unclaimed. |
Method Summary | |
---|---|
static Task.TaskStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Task.TaskStatus[] |
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 Task.TaskStatus UNASSIGNED
public static final Task.TaskStatus ASSIGNED
public static final Task.TaskStatus UNCLAIMED
public static final Task.TaskStatus CLAIMED
public static final Task.TaskStatus STARTED
public static final Task.TaskStatus COMPLETED
Method Detail |
---|
public static Task.TaskStatus[] values()
for (Task.TaskStatus c : Task.TaskStatus.values()) System.out.println(c);
public static Task.TaskStatus 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 |