@Generated public enum QueryStatementType extends Enum<QueryStatementType>
| Enum Constant and Description |
|---|
ALTER |
ANALYZE |
COPY |
CREATE |
DELETE |
DESCRIBE |
DROP |
EXPLAIN |
GRANT |
INSERT |
MERGE |
OPTIMIZE |
OTHER |
REFRESH |
REPLACE |
REVOKE |
SELECT |
SET |
SHOW |
TRUNCATE |
UPDATE |
USE |
| Modifier and Type | Method and Description |
|---|---|
static QueryStatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryStatementType ALTER
public static final QueryStatementType ANALYZE
public static final QueryStatementType COPY
public static final QueryStatementType CREATE
public static final QueryStatementType DELETE
public static final QueryStatementType DESCRIBE
public static final QueryStatementType DROP
public static final QueryStatementType EXPLAIN
public static final QueryStatementType GRANT
public static final QueryStatementType INSERT
public static final QueryStatementType MERGE
public static final QueryStatementType OPTIMIZE
public static final QueryStatementType OTHER
public static final QueryStatementType REFRESH
public static final QueryStatementType REPLACE
public static final QueryStatementType REVOKE
public static final QueryStatementType SELECT
public static final QueryStatementType SET
public static final QueryStatementType SHOW
public static final QueryStatementType TRUNCATE
public static final QueryStatementType UPDATE
public static final QueryStatementType USE
public static QueryStatementType[] values()
for (QueryStatementType c : QueryStatementType.values()) System.out.println(c);
public static QueryStatementType 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 © 2024. All rights reserved.