public enum DDBSAction extends java.lang.Enum<DDBSAction>
Enum Constant and Description |
---|
ADD |
COMMIT |
CREATE_ENTITY |
DELETE |
IS_AUTOCOMMIT |
LIST_ALL |
LIST_PEERS |
LOAD_ARRAY |
READ |
READ_LAST_ELEMENT |
ROLLBACK |
TRANSACTION |
UPDATE |
Modifier and Type | Method and Description |
---|---|
int |
getActionCode()
Get action code
|
static DDBSAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DDBSAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DDBSAction LIST_ALL
public static final DDBSAction READ
public static final DDBSAction READ_LAST_ELEMENT
public static final DDBSAction ADD
public static final DDBSAction UPDATE
public static final DDBSAction DELETE
public static final DDBSAction LIST_PEERS
public static final DDBSAction LOAD_ARRAY
public static final DDBSAction CREATE_ENTITY
public static final DDBSAction IS_AUTOCOMMIT
public static final DDBSAction COMMIT
public static final DDBSAction ROLLBACK
public static final DDBSAction TRANSACTION
public static DDBSAction[] values()
for (DDBSAction c : DDBSAction.values()) System.out.println(c);
public static DDBSAction 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 nullpublic int getActionCode()