public static enum DataMethod.OperationType extends java.lang.Enum<DataMethod.OperationType>
| Enum Constant and Description |
|---|
COUNT
A count operation.
|
DELETE
A delete operation.
|
EXISTS
A exists operation.
|
INSERT
An insert operation.
|
QUERY
A query operation.
|
UPDATE
An update operation.
|
| Modifier and Type | Method and Description |
|---|---|
static DataMethod.OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMethod.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMethod.OperationType QUERY
public static final DataMethod.OperationType COUNT
public static final DataMethod.OperationType EXISTS
public static final DataMethod.OperationType UPDATE
public static final DataMethod.OperationType DELETE
public static final DataMethod.OperationType INSERT
public static DataMethod.OperationType[] values()
for (DataMethod.OperationType c : DataMethod.OperationType.values()) System.out.println(c);
public static DataMethod.OperationType 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