public enum QueryCmd extends Enum<QueryCmd>
| Enum Constant and Description |
|---|
CREATE_ALTER_DROP |
INSERT_UPSERT |
SELECT |
UNKNOWN |
UPDATE_REPLACE_DELETE |
| Modifier and Type | Method and Description |
|---|---|
static QueryCmd |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryCmd[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryCmd UNKNOWN
public static final QueryCmd SELECT
public static final QueryCmd CREATE_ALTER_DROP
public static final QueryCmd INSERT_UPSERT
public static final QueryCmd UPDATE_REPLACE_DELETE
public static QueryCmd[] values()
for (QueryCmd c : QueryCmd.values()) System.out.println(c);
public static QueryCmd 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.