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