public enum ControllerChangeType extends java.lang.Enum<ControllerChangeType>
Controller changes to be used in ControllerChangeHandlers| Enum Constant and Description |
|---|
POP_ENTER
The Controller is being popped from the backstack and placed in the host container as another Controller is popped
|
POP_EXIT
The Controller is being popped from the host container
|
PUSH_ENTER
The Controller is being pushed to the host container
|
PUSH_EXIT
The Controller is being pushed to the backstack as another Controller is pushed to the host container
|
| Modifier and Type | Method and Description |
|---|---|
static ControllerChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControllerChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControllerChangeType PUSH_ENTER
public static final ControllerChangeType PUSH_EXIT
public static final ControllerChangeType POP_ENTER
public static final ControllerChangeType POP_EXIT
public static ControllerChangeType[] values()
for (ControllerChangeType c : ControllerChangeType.values()) System.out.println(c);
public static ControllerChangeType 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