public static enum Advantage.ActivityState extends java.lang.Enum<Advantage.ActivityState>
| Enum Constant and Description |
|---|
PAUSE
At this point your activity is at the top of the activity stack.
|
RESUME
At this point your activity is not at the top of the activity stack anymore.
|
| Modifier and Type | Method and Description |
|---|---|
static Advantage.ActivityState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Advantage.ActivityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Advantage.ActivityState PAUSE
public static final Advantage.ActivityState RESUME
public static Advantage.ActivityState[] values()
for (Advantage.ActivityState c : Advantage.ActivityState.values()) System.out.println(c);
public static Advantage.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