public enum MySQLEngineType extends Enum<MySQLEngineType>
Enum Constant and Description |
---|
BDB |
Falcon |
InnoDB |
Maria |
Memory |
MyISAM |
NDB |
Modifier and Type | Method and Description |
---|---|
static MySQLEngineType |
convert(String engineName) |
abstract String |
getEngineName() |
static MySQLEngineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySQLEngineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySQLEngineType MyISAM
public static final MySQLEngineType Maria
public static final MySQLEngineType InnoDB
public static final MySQLEngineType Falcon
public static final MySQLEngineType Memory
public static final MySQLEngineType BDB
public static final MySQLEngineType NDB
public static MySQLEngineType[] values()
for (MySQLEngineType c : MySQLEngineType.values()) System.out.println(c);
public static MySQLEngineType 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 nullpublic abstract String getEngineName()
public static MySQLEngineType convert(String engineName)
Licenced under the Apache License, Version 2.0