public enum MySqlEngineConstant extends Enum<MySqlEngineConstant>
| Enum Constant and Description |
|---|
ARCHIVE |
BLACKHOLE |
CSV |
DEFAULT |
InnoDB |
MEMORY |
MRG_MYISAM |
MyISAM |
PERFORMANCE_SCHEMA |
| Modifier and Type | Method and Description |
|---|---|
static MySqlEngineConstant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySqlEngineConstant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySqlEngineConstant DEFAULT
public static final MySqlEngineConstant ARCHIVE
public static final MySqlEngineConstant BLACKHOLE
public static final MySqlEngineConstant CSV
public static final MySqlEngineConstant InnoDB
public static final MySqlEngineConstant MEMORY
public static final MySqlEngineConstant MRG_MYISAM
public static final MySqlEngineConstant MyISAM
public static final MySqlEngineConstant PERFORMANCE_SCHEMA
public static MySqlEngineConstant[] values()
for (MySqlEngineConstant c : MySqlEngineConstant.values()) System.out.println(c);
public static MySqlEngineConstant 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 © 2021. All rights reserved.