Package org.springframework.boot.jdbc
Enum Class EmbeddedDatabaseConnection
- All Implemented Interfaces:
Serializable
,Comparable<EmbeddedDatabaseConnection>
,Constable
Connection details for
embedded databases
.- Since:
- 1.0.0
- Author:
- Phillip Webb, Dave Syer, Stephane Nicoll, Nidhi Desai, Moritz Halbritter
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic EmbeddedDatabaseConnection
get
(ClassLoader classLoader) Returns the most suitableEmbeddedDatabaseConnection
for the given class loader.Returns the driver class name.getType()
Returns theEmbeddedDatabaseType
for the connection.Returns the URL for the connection using the specifieddatabaseName
.static boolean
isEmbedded
(String driverClass, String url) Convenience method to determine if a given driver class name and url represent an embedded database type.static boolean
isEmbedded
(DataSource dataSource) Convenience method to determine if a given data source represents an embedded database type.static EmbeddedDatabaseConnection
Returns the enum constant of this class with the specified name.static EmbeddedDatabaseConnection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No Connection. -
H2
H2 Database Connection. -
DERBY
Derby Database Connection. -
HSQLDB
HSQL Database Connection.- Since:
- 2.4.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getDriverClassName
Returns the driver class name.- Returns:
- the driver class name
-
getType
Returns theEmbeddedDatabaseType
for the connection.- Returns:
- the database type
-
getUrl
Returns the URL for the connection using the specifieddatabaseName
.- Parameters:
databaseName
- the name of the database- Returns:
- the connection URL
-
isEmbedded
Convenience method to determine if a given driver class name and url represent an embedded database type.- Parameters:
driverClass
- the driver classurl
- the jdbc url (can benull
)- Returns:
- true if the driver class and url refer to an embedded database
- Since:
- 2.4.0
-
isEmbedded
Convenience method to determine if a given data source represents an embedded database type.- Parameters:
dataSource
- the data source to interrogate- Returns:
- true if the data source is one of the embedded types
-
get
Returns the most suitableEmbeddedDatabaseConnection
for the given class loader.- Parameters:
classLoader
- the class loader used to check for classes- Returns:
- an
EmbeddedDatabaseConnection
orNONE
.
-