public enum EventMappingKind extends java.lang.Enum<EventMappingKind>
EventKind for matching events.| Enum Constant and Description |
|---|
ALL |
ENTITY_CHANGE |
MANUAL |
REQUEST |
| Modifier and Type | Method and Description |
|---|---|
static EventMappingKind |
valueOf(EventKind kind) |
static EventMappingKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventMappingKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventMappingKind ENTITY_CHANGE
public static final EventMappingKind REQUEST
public static final EventMappingKind MANUAL
public static final EventMappingKind ALL
public static EventMappingKind[] values()
for (EventMappingKind c : EventMappingKind.values()) System.out.println(c);
public static EventMappingKind 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 nullpublic static EventMappingKind valueOf(EventKind kind)