public static enum AutoConfigureEmbeddedDatabase.DatabaseProvider extends java.lang.Enum<AutoConfigureEmbeddedDatabase.DatabaseProvider>
| Enum Constant and Description |
|---|
DEFAULT
Default typically equals to
DOCKER provider,
unless a different default has been configured by configuration properties. |
DOCKER
Run the embedded database in Docker as a container.
|
EMBEDDED
Use an embedded database provider.
|
OPENTABLE
Deprecated.
Use the
EMBEDDED value instead. OpenTable provider has been deprecated in favor of Zonky provider and is scheduled to be removed in the next major version. |
YANDEX
Deprecated.
Use the
EMBEDDED value instead. Yandex provider has been deprecated in favor of Zonky provider and is scheduled to be removed in the next major version. |
ZONKY
Deprecated.
Use the
EMBEDDED value instead. Zonky provider has been renamed to the Embedded Postgres provider and this enum value is scheduled to be removed in the next major version. |
| Modifier and Type | Method and Description |
|---|---|
static AutoConfigureEmbeddedDatabase.DatabaseProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoConfigureEmbeddedDatabase.DatabaseProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoConfigureEmbeddedDatabase.DatabaseProvider DEFAULT
DOCKER provider,
unless a different default has been configured by configuration properties.public static final AutoConfigureEmbeddedDatabase.DatabaseProvider DOCKER
public static final AutoConfigureEmbeddedDatabase.DatabaseProvider EMBEDDED
@Deprecated public static final AutoConfigureEmbeddedDatabase.DatabaseProvider ZONKY
EMBEDDED value instead. Zonky provider has been renamed to the Embedded Postgres provider and this enum value is scheduled to be removed in the next major version.@Deprecated public static final AutoConfigureEmbeddedDatabase.DatabaseProvider OPENTABLE
EMBEDDED value instead. OpenTable provider has been deprecated in favor of Zonky provider and is scheduled to be removed in the next major version.@Deprecated public static final AutoConfigureEmbeddedDatabase.DatabaseProvider YANDEX
EMBEDDED value instead. Yandex provider has been deprecated in favor of Zonky provider and is scheduled to be removed in the next major version.public static AutoConfigureEmbeddedDatabase.DatabaseProvider[] values()
for (AutoConfigureEmbeddedDatabase.DatabaseProvider c : AutoConfigureEmbeddedDatabase.DatabaseProvider.values()) System.out.println(c);
public static AutoConfigureEmbeddedDatabase.DatabaseProvider 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