public enum ScreenLifeCycle extends java.lang.Enum<ScreenLifeCycle>
| Enum Constant and Description |
|---|
AFTER_SHOW |
BEFORE_SHOW |
CREATE |
INIT |
INJECTION |
LOAD |
UI_PERMISSIONS |
XML |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
java.lang.String |
toString() |
static ScreenLifeCycle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenLifeCycle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenLifeCycle CREATE
public static final ScreenLifeCycle LOAD
public static final ScreenLifeCycle XML
public static final ScreenLifeCycle INIT
public static final ScreenLifeCycle BEFORE_SHOW
public static final ScreenLifeCycle AFTER_SHOW
public static final ScreenLifeCycle UI_PERMISSIONS
public static final ScreenLifeCycle INJECTION
public static ScreenLifeCycle[] values()
for (ScreenLifeCycle c : ScreenLifeCycle.values()) System.out.println(c);
public static ScreenLifeCycle 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ScreenLifeCycle>public java.lang.String getName()