public enum Platform extends Enum<Platform>
| Enum Constant and Description |
|---|
CLICKHOUSE
ClickHouse.
|
COCKROACH
CockroachDB.
|
DB2
DB2.
|
GENERIC
Generic platform configured via properties or code.
|
H2
H2.
|
HANA
SAP HANA
|
HSQLDB
HsqlDB.
|
MYSQL
MySql.
|
MYSQL55
MySql 5.5.
|
NUODB
NuoDB.
|
ORACLE
Oracle.
|
POSTGRES
Postgres.
|
SQLANYWHERE
SQLAnywhere.
|
SQLITE
SQLite.
|
SQLSERVER
Microsoft SQL Server (preferred platform 2017).
|
SQLSERVER16
Microsoft SQL Server 2016 platform (Non UTF8 types and Identity by default).
|
SQLSERVER17
Microsoft SQL Server 2017 platform (UTF8 types and Sequence).
|
| Modifier and Type | Method and Description |
|---|---|
Platform |
base()
Return the base platform.
|
static Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform CLICKHOUSE
public static final Platform SQLANYWHERE
public static final Platform SQLSERVER16
public static final Platform SQLSERVER17
public static Platform[] values()
for (Platform c : Platform.values()) System.out.println(c);
public static Platform 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 © 2019. All rights reserved.