| Enum Constant and Description |
|---|
DELETE
Represents the removal or deletion of an existing entry.
|
INSERT
Represents the creation/insertion of a new entry.
|
MOVE
Represents the "move" of an existing entry, this is usually only relevant for LDAP backends.
|
SKIP
Represents an event that should be skipped or ignored.
|
UPDATE
Represents the update of an existing entry.
|
| Modifier and Type | Method and Description |
|---|---|
static EventType |
getEventType(java.lang.String eventType)
Returns the EventType instance that corresponds to the specified event type String.
|
java.lang.String |
toLowerCase() |
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType INSERT
public static final EventType DELETE
public static final EventType UPDATE
public static final EventType MOVE
public static final EventType SKIP
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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 java.lang.String toLowerCase()
public static EventType getEventType(java.lang.String eventType)
eventType - A String representation of an EventType.