public enum ActivityState extends java.lang.Enum<ActivityState>
| Enum Constant and Description |
|---|
FINISHED
Finished.
|
IN_PROGRESS
In progress.
|
NOT_STARTED
Not started yet.
|
| Modifier and Type | Method and Description |
|---|---|
static ActivityState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActivityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityState NOT_STARTED
public static final ActivityState IN_PROGRESS
public static final ActivityState FINISHED
public static ActivityState[] values()
for (ActivityState c : ActivityState.values()) System.out.println(c);
public static ActivityState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null