public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
DB2 |
DERBY_EMBEDDED |
DERBY_NETWORK |
H2 |
HSQL |
MS_SQL |
MYSQL |
NUODB |
ORACLE |
POSTGRESQL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseType |
valueOf(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 H2
public static final DatabaseType HSQL
public static final DatabaseType MYSQL
public static final DatabaseType POSTGRESQL
public static final DatabaseType ORACLE
public static final DatabaseType MS_SQL
public static final DatabaseType DB2
public static final DatabaseType DERBY_EMBEDDED
public static final DatabaseType DERBY_NETWORK
public static final DatabaseType NUODB
public static final DatabaseType UNKNOWN
public static DatabaseType[] values()
for (DatabaseType c : DatabaseType.values()) System.out.println(c);
public static DatabaseType 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 © 2018 Atlassian. All rights reserved.