public static enum DatabaseChangeRecord.ChangeType extends java.lang.Enum<DatabaseChangeRecord.ChangeType>
| Enum Constant and Description |
|---|
delete
Represents a database delete.
|
insert
Represents a database insert.
|
resync
Represents a resync operation.
|
update
Represents a database update.
|
| Modifier and Type | Method and Description |
|---|---|
static DatabaseChangeRecord.ChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseChangeRecord.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseChangeRecord.ChangeType insert
public static final DatabaseChangeRecord.ChangeType delete
public static final DatabaseChangeRecord.ChangeType update
public static final DatabaseChangeRecord.ChangeType resync
JDBCSyncSource#listAllEntries() for more
information.public static DatabaseChangeRecord.ChangeType[] values()
for (DatabaseChangeRecord.ChangeType c : DatabaseChangeRecord.ChangeType.values()) System.out.println(c);
public static DatabaseChangeRecord.ChangeType 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