Serializable
, Comparable<RowChangeDescription.RowOperation>
public static enum RowChangeDescription.RowOperation extends Enum<RowChangeDescription.RowOperation>
Enum Constant | Description |
---|---|
DELETE |
Delete operation (DML).
|
INSERT |
Insert operation (DML).
|
UPDATE |
Update operation (DML).
|
Modifier and Type | Method | Description |
---|---|---|
int |
getCode() |
Implementation detail (for internal use only).
|
static RowChangeDescription.RowOperation |
getRowOperation(int code) |
Implementation detail (for internal use only).
|
static RowChangeDescription.RowOperation |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RowChangeDescription.RowOperation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowChangeDescription.RowOperation INSERT
public static final RowChangeDescription.RowOperation UPDATE
public static final RowChangeDescription.RowOperation DELETE
public static RowChangeDescription.RowOperation[] values()
for (RowChangeDescription.RowOperation c : RowChangeDescription.RowOperation.values()) System.out.println(c);
public static RowChangeDescription.RowOperation 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 nullpublic final int getCode()
public static final RowChangeDescription.RowOperation getRowOperation(int code)