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