Enum Class Database
- All Implemented Interfaces:
Serializable
,Comparable<Database>
,Constable
Enumeration for common database platforms. Allows strong typing of database type
and portable configuration between JpaVendorDialect implementations.
If a given PersistenceProvider supports a database not listed here,
the strategy class can still be specified using the fully-qualified class name.
This enumeration is merely a convenience. The database products listed here
are the same as those explicitly supported for Spring JDBC exception translation
in sql-error-codes.xml
.
- Since:
- 2.0
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
-
Enum Constant Details
-
DEFAULT
-
DB2
-
DERBY
-
H2
- Since:
- 2.5.5
-
HANA
- Since:
- 5.1
-
HSQL
-
INFORMIX
-
MYSQL
-
ORACLE
-
POSTGRESQL
-
SQL_SERVER
-
SYBASE
-
-
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
-