public enum TaskStatusType extends Enum<TaskStatusType>
Java class for TaskStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TaskStatusType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NotStarted"/>
<enumeration value="InProgress"/>
<enumeration value="Completed"/>
<enumeration value="WaitingOnOthers"/>
<enumeration value="Deferred"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMPLETED |
DEFERRED |
IN_PROGRESS |
NOT_STARTED |
WAITING_ON_OTHERS |
| Modifier and Type | Method and Description |
|---|---|
static TaskStatusType |
fromValue(String v) |
String |
value() |
static TaskStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskStatusType NOT_STARTED
public static final TaskStatusType IN_PROGRESS
public static final TaskStatusType COMPLETED
public static final TaskStatusType WAITING_ON_OTHERS
public static final TaskStatusType DEFERRED
public static TaskStatusType[] values()
for (TaskStatusType c : TaskStatusType.values()) System.out.println(c);
public static TaskStatusType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static TaskStatusType fromValue(String v)
Copyright © 2015 Jasig. All Rights Reserved.