public enum DbPlatformName extends Enum<DbPlatformName>
| Enum Constant and Description |
|---|
DB2
DB2.
|
GENERIC
Generic base platform configured via properties or code.
|
H2
H2.
|
MYSQL
MySql.
|
ORACLE
Oracle.
|
POSTGRES
Postgres.
|
SQLITE
SQLite.
|
SQLSERVER
Microsoft SQL Server.
|
| Modifier and Type | Method and Description |
|---|---|
static DbPlatformName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbPlatformName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbPlatformName GENERIC
public static final DbPlatformName H2
public static final DbPlatformName POSTGRES
public static final DbPlatformName MYSQL
public static final DbPlatformName ORACLE
public static final DbPlatformName SQLSERVER
public static final DbPlatformName DB2
public static final DbPlatformName SQLITE
public static DbPlatformName[] values()
for (DbPlatformName c : DbPlatformName.values()) System.out.println(c);
public static DbPlatformName 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 © 2016. All rights reserved.