public static enum SqlProcessor.StatementType extends Enum<SqlProcessor.StatementType>
| Enum Constant and Description |
|---|
CALL
SQL CALL
|
CRUD
CRUD, can be GET, INSERT, UPDATE, DELETE
|
QRY
Query
|
| Modifier and Type | Method and Description |
|---|---|
static SqlProcessor.StatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlProcessor.StatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlProcessor.StatementType QRY
public static final SqlProcessor.StatementType CRUD
public static final SqlProcessor.StatementType CALL
public static SqlProcessor.StatementType[] values()
for (SqlProcessor.StatementType c : SqlProcessor.StatementType.values()) System.out.println(c);
public static SqlProcessor.StatementType 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 nullCopyright © 2017. All rights reserved.