public static enum AutoConfigureEmbeddedDatabase.DatabaseType extends java.lang.Enum<AutoConfigureEmbeddedDatabase.DatabaseType>
| Enum Constant and Description |
|---|
AUTO
Database is detected automatically based on the classpath.
|
MARIADB
MariaDB Database
|
MSSQL
Microsoft SQL Server
|
MYSQL
MySQL Database
|
POSTGRES
PostgreSQL Database
|
| Modifier and Type | Method and Description |
|---|---|
static AutoConfigureEmbeddedDatabase.DatabaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoConfigureEmbeddedDatabase.DatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoConfigureEmbeddedDatabase.DatabaseType AUTO
public static final AutoConfigureEmbeddedDatabase.DatabaseType POSTGRES
public static final AutoConfigureEmbeddedDatabase.DatabaseType MSSQL
public static final AutoConfigureEmbeddedDatabase.DatabaseType MYSQL
public static final AutoConfigureEmbeddedDatabase.DatabaseType MARIADB
public static AutoConfigureEmbeddedDatabase.DatabaseType[] values()
for (AutoConfigureEmbeddedDatabase.DatabaseType c : AutoConfigureEmbeddedDatabase.DatabaseType.values()) System.out.println(c);
public static AutoConfigureEmbeddedDatabase.DatabaseType 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 null