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