public enum ESetStatementType extends Enum<ESetStatementType>
Enum Constant and Description |
---|
character_set |
names |
password |
schema |
transaction |
variable |
Modifier and Type | Method and Description |
---|---|
static ESetStatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ESetStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESetStatementType variable
public static final ESetStatementType character_set
public static final ESetStatementType names
public static final ESetStatementType password
public static final ESetStatementType transaction
public static final ESetStatementType schema
public static ESetStatementType[] values()
for (ESetStatementType c : ESetStatementType.values()) System.out.println(c);
public static ESetStatementType 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 © 2019. All rights reserved.