public static enum Task.Status extends Enum<Task.Status>
Enum Constant and Description |
---|
APPROVED |
IN_PROGRESS |
NOT_STARTED |
REJECTED |
Modifier and Type | Method and Description |
---|---|
static Task.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task.Status NOT_STARTED
public static final Task.Status IN_PROGRESS
public static final Task.Status APPROVED
public static final Task.Status REJECTED
public static Task.Status[] values()
for (Task.Status c : Task.Status.values()) System.out.println(c);
public static Task.Status 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 © 2013 OW2 Consortium. All Rights Reserved.