public static enum SqlUtils.SqlType extends java.lang.Enum<SqlUtils.SqlType>
枚举常量和说明 |
---|
ALTER
alter 语句
|
CREATEINDEX
create index语句
|
CREATETABLE
CREATETABLE
|
CREATEVIEW
CREATEVIEW
|
DELETE
DELETE
|
DROP
DROP
|
EXECUTE
EXECUTE
|
INSERT
INSERT
|
MERGE
MERGE
|
NONE
不知道什么类型的
|
REPLACE
REPLACE
|
SELECT
SELECT
|
TRUNCATE
TRUNCATE
|
UPDATE
UPDATE
|
UPSERT
UPSERT
|
限定符和类型 | 方法和说明 |
---|---|
static SqlUtils.SqlType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static SqlUtils.SqlType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final SqlUtils.SqlType ALTER
public static final SqlUtils.SqlType CREATEINDEX
public static final SqlUtils.SqlType CREATETABLE
public static final SqlUtils.SqlType CREATEVIEW
public static final SqlUtils.SqlType DELETE
public static final SqlUtils.SqlType DROP
public static final SqlUtils.SqlType EXECUTE
public static final SqlUtils.SqlType INSERT
public static final SqlUtils.SqlType MERGE
public static final SqlUtils.SqlType REPLACE
public static final SqlUtils.SqlType SELECT
public static final SqlUtils.SqlType TRUNCATE
public static final SqlUtils.SqlType UPDATE
public static final SqlUtils.SqlType UPSERT
public static final SqlUtils.SqlType NONE
public static SqlUtils.SqlType[] values()
for (SqlUtils.SqlType c : SqlUtils.SqlType.values()) System.out.println(c);
public static SqlUtils.SqlType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值