public static enum Change.ChangeType extends Enum<Change.ChangeType>
| Enum Constant and Description |
|---|
DELETE
Delete
|
INSERT
Insert of new data
|
UPDATE
Update of a row
|
| Modifier and Type | Method and Description |
|---|---|
static Change.ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Change.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Change.ChangeType UPDATE
public static final Change.ChangeType INSERT
public static final Change.ChangeType DELETE
public static Change.ChangeType[] values()
for (Change.ChangeType c : Change.ChangeType.values()) System.out.println(c);
public static Change.ChangeType 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 nullCopyright © 2017–2018. All rights reserved.