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