protected static enum AbstractEventSourceInterceptor.EventGroup extends java.lang.Enum<AbstractEventSourceInterceptor.EventGroup>
| Enum Constant and Description |
|---|
PERSIST
Persist events.
|
REMOVE
Remove events.
|
UPDATE
Update events.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractEventSourceInterceptor.EventGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractEventSourceInterceptor.EventGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractEventSourceInterceptor.EventGroup PERSIST
public static final AbstractEventSourceInterceptor.EventGroup UPDATE
public static final AbstractEventSourceInterceptor.EventGroup REMOVE
public static AbstractEventSourceInterceptor.EventGroup[] values()
for (AbstractEventSourceInterceptor.EventGroup c : AbstractEventSourceInterceptor.EventGroup.values()) System.out.println(c);
public static AbstractEventSourceInterceptor.EventGroup 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