Enum Class EmbeddedDatabaseType
java.lang.Object
java.lang.Enum<EmbeddedDatabaseType>
org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType
- All Implemented Interfaces:
Serializable
,Comparable<EmbeddedDatabaseType>
,Constable
A supported embedded database type.
- Since:
- 3.0
- Author:
- Keith Donald, Oliver Gierke
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe Apache Derby Embedded SQL Database.The H2 Embedded Java SQL Database Engine.The Hypersonic Embedded Java SQL Database. -
Method Summary
Modifier and TypeMethodDescriptionstatic EmbeddedDatabaseType
Returns the enum constant of this class with the specified name.static EmbeddedDatabaseType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HSQL
The Hypersonic Embedded Java SQL Database. -
H2
The H2 Embedded Java SQL Database Engine. -
DERBY
The Apache Derby Embedded SQL Database.
-
-
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
-