public static enum Event.Type extends Enum<Event.Type>
| Modifier and Type | Method and Description |
|---|---|
static Event.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Type ALL
public static final Event.Type CREATE
public static final Event.Type START
public static final Event.Type RESUME
public static final Event.Type PAUSE
public static final Event.Type STOP
public static final Event.Type DESTROY
public static final Event.Type SAVE_INSTANCE_STATE
public static final Event.Type CONFIGURATION_CHANGED
public static final Event.Type ACTIVITY_RESULT
public static final Event.Type REQUEST_PERMISSIONS_RESULT
public static final Event.Type CREATE_PERSISTABLE
public static final Event.Type RESTART
public static final Event.Type SAVE_INSTANCE_STATE_PERSISTABLE
public static final Event.Type RESTORE_INSTANCE_STATE
public static final Event.Type RESTORE_INSTANCE_STATE_PERSISTABLE
public static final Event.Type NEW_INTENT
public static final Event.Type BACK_PRESSED
public static final Event.Type ATTACHED_TO_WINDOW
public static final Event.Type DETACHED_FROM_WINDOW
public static final Event.Type ATTACH
public static final Event.Type CREATE_VIEW
public static final Event.Type ACTIVITY_CREATED
public static final Event.Type VIEW_STATE_RESTORED
public static final Event.Type DESTROY_VIEW
public static final Event.Type DETACH
public static Event.Type[] values()
for (Event.Type c : Event.Type.values()) System.out.println(c);
public static Event.Type 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