public static enum EmbeddedDB.DBEngine extends Enum<EmbeddedDB.DBEngine>
| Enum Constant and Description |
|---|
GENERIC |
H2 |
MYSQL |
POSTGRESQL |
| Modifier and Type | Method and Description |
|---|---|
static EmbeddedDB.DBEngine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmbeddedDB.DBEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbeddedDB.DBEngine GENERIC
public static final EmbeddedDB.DBEngine MYSQL
public static final EmbeddedDB.DBEngine H2
public static final EmbeddedDB.DBEngine POSTGRESQL
public static EmbeddedDB.DBEngine[] values()
for (EmbeddedDB.DBEngine c : EmbeddedDB.DBEngine.values()) System.out.println(c);
public static EmbeddedDB.DBEngine 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 © 2010-2016. All Rights Reserved.