| Enum Constant and Description |
|---|
BATCH_DELETE
batch delete
|
BATCH_INSERT
batch insert
|
BATCH_UPDATE
batch update
|
DELETE
delete
|
FUNCTION
stored function
|
INSERT
insert
|
PROCEDURE
stored procedure
|
SCRIPT
script
|
SELECT
select
|
SQL_PROCESSOR
sql processor
|
UPDATE
update
|
| Modifier and Type | Method and Description |
|---|---|
static SqlKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlKind SELECT
public static final SqlKind INSERT
public static final SqlKind UPDATE
public static final SqlKind DELETE
public static final SqlKind BATCH_INSERT
public static final SqlKind BATCH_UPDATE
public static final SqlKind BATCH_DELETE
public static final SqlKind PROCEDURE
public static final SqlKind FUNCTION
public static final SqlKind SCRIPT
public static final SqlKind SQL_PROCESSOR
public static SqlKind[] values()
for (SqlKind c : SqlKind.values()) System.out.println(c);
public static SqlKind 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