public enum TableRowAction extends java.lang.Enum<TableRowAction>
Enum Constant and Description |
---|
ROW_CHANGE
Old row is modified.
|
ROW_CREATE
New row is created.
|
ROW_DELETE
Old row is deleted.
|
Modifier and Type | Method and Description |
---|---|
static TableRowAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableRowAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableRowAction ROW_CREATE
public static final TableRowAction ROW_DELETE
public static final TableRowAction ROW_CHANGE
public static TableRowAction[] values()
for (TableRowAction c : TableRowAction.values()) System.out.println(c);
public static TableRowAction 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