public static enum SqlMetaStatement.Type extends Enum<SqlMetaStatement.Type>
| Enum Constant and Description |
|---|
CALL
SQL CALL
|
CREATE
SQL INSERT
|
DELETE
SQL DELETE/DROP
|
QUERY
SQL SELECT
|
RETRIEVE
SQL SELECT one row
|
UPDATE
SQL SET
|
| Modifier and Type | Method and Description |
|---|---|
static SqlMetaStatement.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlMetaStatement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlMetaStatement.Type QUERY
public static final SqlMetaStatement.Type CREATE
public static final SqlMetaStatement.Type RETRIEVE
public static final SqlMetaStatement.Type UPDATE
public static final SqlMetaStatement.Type DELETE
public static final SqlMetaStatement.Type CALL
public static SqlMetaStatement.Type[] values()
for (SqlMetaStatement.Type c : SqlMetaStatement.Type.values()) System.out.println(c);
public static SqlMetaStatement.Type 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.