public enum DatabaseType extends java.lang.Enum<DatabaseType>
Enum Constant and Description |
---|
DB2
The engine uses the DB2 database.
|
DERBY
The engine uses the Derby database.
|
H2
The engine uses the H2 database.
|
HSQL
The engine uses the HSQL database.
|
MYSQL
The engine uses the MySQL database.
|
ORACLE
The engine uses the Oracle database.
|
POSTGRES
The engine uses the PostgreSQL database.
|
SQL_SERVER
The engine uses the SQL Server database.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseType DB2
public static final DatabaseType DERBY
public static final DatabaseType H2
public static final DatabaseType HSQL
public static final DatabaseType MYSQL
public static final DatabaseType ORACLE
public static final DatabaseType POSTGRES
public static final DatabaseType SQL_SERVER
public static DatabaseType[] values()
for (DatabaseType c : DatabaseType.values()) System.out.println(c);
public static DatabaseType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null© 2000-2025 Flux Corporation. All rights reserved.