public enum EmbeddedDatabaseConnection extends Enum<EmbeddedDatabaseConnection>
| Enum Constant and Description | 
|---|
H2
H2 Database Connection. 
 | 
NONE
No Connection. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static EmbeddedDatabaseConnection | 
get(ClassLoader classLoader)
Returns the most suitable  
EmbeddedDatabaseConnection for the given class
 loader. | 
String | 
getDriverClassName()
Returns the driver class name. 
 | 
String | 
getType()
Returns the embedded database type name for the connection. 
 | 
String | 
getUrl(String databaseName)
Returns the R2DBC URL for the connection using the specified  
databaseName. | 
static EmbeddedDatabaseConnection | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static EmbeddedDatabaseConnection[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EmbeddedDatabaseConnection NONE
public static final EmbeddedDatabaseConnection H2
public static EmbeddedDatabaseConnection[] values()
for (EmbeddedDatabaseConnection c : EmbeddedDatabaseConnection.values()) System.out.println(c);
public static EmbeddedDatabaseConnection 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 nullpublic String getDriverClassName()
public String getType()
public String getUrl(String databaseName)
databaseName.databaseName - the name of the databasepublic static EmbeddedDatabaseConnection get(ClassLoader classLoader)
EmbeddedDatabaseConnection for the given class
 loader.classLoader - the class loader used to check for classesEmbeddedDatabaseConnection or NONE.