public static enum Task.TaskStatus extends Enum<Task.TaskStatus>
Enum Constant and Description |
---|
ASSIGNED |
STARTED |
UNASSIGNED |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Task.TaskStatus UNASSIGNED
public static final Task.TaskStatus ASSIGNED
public static final Task.TaskStatus STARTED
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 nameNullPointerException
- if the argument is nullCopyright (c) 2019, SAS Institute Inc., Cary, NC, USA