public enum FragmentEvent extends Enum<FragmentEvent>
| Enum Constant and Description |
|---|
ATTACH |
CREATE |
CREATE_VIEW |
DESTROY |
DESTROY_VIEW |
DETACH |
PAUSE |
RESUME |
START |
STOP |
| Modifier and Type | Method and Description |
|---|---|
static FragmentEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FragmentEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FragmentEvent ATTACH
public static final FragmentEvent CREATE
public static final FragmentEvent CREATE_VIEW
public static final FragmentEvent START
public static final FragmentEvent RESUME
public static final FragmentEvent PAUSE
public static final FragmentEvent STOP
public static final FragmentEvent DESTROY_VIEW
public static final FragmentEvent DESTROY
public static final FragmentEvent DETACH
public static FragmentEvent[] values()
for (FragmentEvent c : FragmentEvent.values()) System.out.println(c);
public static FragmentEvent 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