public static enum Event.TYPE extends Enum<Event.TYPE>
| Enum Constant and Description |
|---|
POST_DELETE |
POST_SAVE |
PRE_DELETE |
PRE_SAVE |
| Modifier and Type | Method and Description |
|---|---|
static Event.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.TYPE PRE_SAVE
public static final Event.TYPE POST_SAVE
public static final Event.TYPE PRE_DELETE
public static final Event.TYPE POST_DELETE
public static Event.TYPE[] values()
for (Event.TYPE c : Event.TYPE.values()) System.out.println(c);
public static Event.TYPE valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2020 Neo Technology, Inc.. All rights reserved.