public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
H2
H2 internal database
|
MARIADB
Maria DB database
|
MYSQL
MySql database
|
ORACLE
Oracle database
|
POSTGRES
Postgres database
|
SQLSERVER
Microsoft's SQL Server database
|
UNKNOWN
If the database type is unable to be determined, or is unsupported this type is used
|
| 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 MARIADB
public static final DatabaseType MYSQL
public static final DatabaseType ORACLE
public static final DatabaseType POSTGRES
public static final DatabaseType SQLSERVER
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 © 2023 Atlassian. All rights reserved.