public enum PostgreSQLCommand extends Enum<PostgreSQLCommand>
| 限定符和类型 | 方法和说明 |
|---|---|
static Optional<PostgreSQLCommand> |
valueOf(Class<? extends org.apache.shardingsphere.sql.parser.sql.common.statement.SQLStatement> sqlStatementClass)
Value of PostgreSQL command via SQL statement class.
|
static PostgreSQLCommand |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static PostgreSQLCommand[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final PostgreSQLCommand SELECT
public static final PostgreSQLCommand INSERT
public static final PostgreSQLCommand UPDATE
public static final PostgreSQLCommand DELETE
public static final PostgreSQLCommand CALL
public static final PostgreSQLCommand DO
public static final PostgreSQLCommand ANALYZE
public static final PostgreSQLCommand VACUUM
public static final PostgreSQLCommand ALTER_FUNCTION
public static final PostgreSQLCommand ALTER_INDEX
public static final PostgreSQLCommand ALTER_PROCEDURE
public static final PostgreSQLCommand ALTER_SEQUENCE
public static final PostgreSQLCommand ALTER_TABLESPACE
public static final PostgreSQLCommand ALTER_TABLE
public static final PostgreSQLCommand ALTER_VIEW
public static final PostgreSQLCommand CREATE
public static final PostgreSQLCommand CREATE_DATABASE
public static final PostgreSQLCommand CREATE_FUNCTION
public static final PostgreSQLCommand CREATE_INDEX
public static final PostgreSQLCommand CREATE_PROCEDURE
public static final PostgreSQLCommand CREATE_SEQUENCE
public static final PostgreSQLCommand CREATE_TABLESPACE
public static final PostgreSQLCommand CREATE_TABLE
public static final PostgreSQLCommand CREATE_VIEW
public static final PostgreSQLCommand DROP_DATABASE
public static final PostgreSQLCommand DROP_FUNCTION
public static final PostgreSQLCommand DROP_INDEX
public static final PostgreSQLCommand DROP_PROCEDURE
public static final PostgreSQLCommand DROP_SEQUENCE
public static final PostgreSQLCommand DROP_TABLESPACE
public static final PostgreSQLCommand DROP_TABLE
public static final PostgreSQLCommand DROP_VIEW
public static final PostgreSQLCommand TRUNCATE_TABLE
public static final PostgreSQLCommand BEGIN
public static final PostgreSQLCommand START_TRANSACTION
public static final PostgreSQLCommand COMMIT
public static final PostgreSQLCommand SAVEPOINT
public static final PostgreSQLCommand ROLLBACK
public static final PostgreSQLCommand RELEASE
public static final PostgreSQLCommand SET
public static final PostgreSQLCommand RESET
public static PostgreSQLCommand[] values()
for (PostgreSQLCommand c : PostgreSQLCommand.values()) System.out.println(c);
public static PostgreSQLCommand valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static Optional<PostgreSQLCommand> valueOf(Class<? extends org.apache.shardingsphere.sql.parser.sql.common.statement.SQLStatement> sqlStatementClass)
sqlStatementClass - SQL statement classCopyright © 2022 The Apache Software Foundation. All rights reserved.