public enum DBMSType extends Enum<DBMSType>
Enum Constant and Description |
---|
HSQLDB |
MYSQL |
ORACLE |
POSTGRESQL |
SQLSERVER |
Modifier and Type | Method and Description |
---|---|
static DBMSType |
getType(String dbmsTypeName) |
static DBMSType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBMSType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBMSType HSQLDB
public static final DBMSType MYSQL
public static final DBMSType POSTGRESQL
public static final DBMSType SQLSERVER
public static final DBMSType ORACLE
public static DBMSType[] values()
for (DBMSType c : DBMSType.values()) System.out.println(c);
public static DBMSType 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