|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DatabaseType>
flux.DatabaseType
public enum DatabaseType
Indicates the kind of database that the engine uses. Defaults to the Derby embedded database. The engine itself does not provide any kind of database. When configuring engines with Derby, do not use clustering under any circumstances. It is an error to cluster engines using Derby.
Enum Constant Summary | |
---|---|
DB2
The engine uses the DB2 database. |
|
DERBY
The engine uses the Derby database. |
|
H2
The engine uses the H2 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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DatabaseType DB2
public static final DatabaseType DERBY
public static final DatabaseType H2
public static final DatabaseType MYSQL
public static final DatabaseType ORACLE
public static final DatabaseType POSTGRES
public static final DatabaseType SQL_SERVER
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |