public static enum ClusterStoreAndForward_SQL_DbMigrations.Database extends java.lang.Enum<ClusterStoreAndForward_SQL_DbMigrations.Database>
Enum Constant and Description |
---|
H2
H2: VARCHAR, VARBINARY (NOTE: H2 also handles
MS_SQL and MS_SQL_2019_UTF8 ). |
MS_SQL
Default: MS SQL: NVARCHAR(MAX), VARBINARY(MAX) (NOTE: H2 also handles these).
|
MS_SQL_2019_UTF8
MS SQL 2019 and above: (assumes UTF-8 collation type) VARCHAR(MAX), VARBINARY(MAX) (NOTE: H2 also
handles these).
|
MYSQL
MySQL / MariaDB: LONGTEXT, LONGBLOB (both 32 bits)
|
ORACLE
Oracle: NCLOB, BLOB
|
POSTGRESQL
PostgreSQL: TEXT, BYTEA
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBinaryType() |
java.lang.String |
getTextType() |
static ClusterStoreAndForward_SQL_DbMigrations.Database |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClusterStoreAndForward_SQL_DbMigrations.Database[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterStoreAndForward_SQL_DbMigrations.Database MS_SQL
public static final ClusterStoreAndForward_SQL_DbMigrations.Database MS_SQL_2019_UTF8
public static final ClusterStoreAndForward_SQL_DbMigrations.Database H2
MS_SQL
and MS_SQL_2019_UTF8
).public static final ClusterStoreAndForward_SQL_DbMigrations.Database POSTGRESQL
public static final ClusterStoreAndForward_SQL_DbMigrations.Database ORACLE
public static final ClusterStoreAndForward_SQL_DbMigrations.Database MYSQL
public static ClusterStoreAndForward_SQL_DbMigrations.Database[] values()
for (ClusterStoreAndForward_SQL_DbMigrations.Database c : ClusterStoreAndForward_SQL_DbMigrations.Database.values()) System.out.println(c);
public static ClusterStoreAndForward_SQL_DbMigrations.Database 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getTextType()
public java.lang.String getBinaryType()