public static enum Task.TaskStatus extends Enum<Task.TaskStatus>
Enum Constant and Description |
---|
ASSIGNED
The task is assigned but not started.
|
STARTED
The task is assigned and started.
|
UNASSIGNED
The task is not assigned and not started.
|
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 null<i>Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA</i>