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