public enum EmbeddedDatabaseType extends Enum<EmbeddedDatabaseType>
Enum Constant and Description |
---|
DERBY
The Apache Derby Embedded SQL Database (http://db.apache.org/derby)
|
H2
The H2 Embedded Java SQL Database Engine (http://h2database.com)
|
HSQL
The Hypersonic Embedded Java SQL Database (http://hsqldb.org)
|
Modifier and Type | Method and Description |
---|---|
static EmbeddedDatabaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmbeddedDatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbeddedDatabaseType HSQL
public static final EmbeddedDatabaseType H2
public static final EmbeddedDatabaseType DERBY
public static EmbeddedDatabaseType[] values()
for (EmbeddedDatabaseType c : EmbeddedDatabaseType.values()) System.out.println(c);
public static EmbeddedDatabaseType 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 null