public static enum BaseChangeEvent.OperationType extends Enum<BaseChangeEvent.OperationType>
| Enum Constant and Description |
|---|
DELETE |
INSERT |
REPLACE |
UNKNOWN |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static BaseChangeEvent.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseChangeEvent.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseChangeEvent.OperationType INSERT
public static final BaseChangeEvent.OperationType DELETE
public static final BaseChangeEvent.OperationType REPLACE
public static final BaseChangeEvent.OperationType UPDATE
public static final BaseChangeEvent.OperationType UNKNOWN
public static BaseChangeEvent.OperationType[] values()
for (BaseChangeEvent.OperationType c : BaseChangeEvent.OperationType.values()) System.out.println(c);
public static BaseChangeEvent.OperationType 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 null