Enum Class Database

java.lang.Object
java.lang.Enum<Database>
org.springframework.orm.jpa.vendor.Database
All Implemented Interfaces:
Serializable, Comparable<Database>, Constable

public enum Database extends Enum<Database>
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:
  • Enum Constant Details

    • DEFAULT

      public static final Database DEFAULT
    • DB2

      public static final Database DB2
    • DERBY

      public static final Database DERBY
    • H2

      public static final Database H2
      Since:
      2.5.5
    • HANA

      public static final Database HANA
      Since:
      5.1
    • HSQL

      public static final Database HSQL
    • INFORMIX

      public static final Database INFORMIX
    • MYSQL

      public static final Database MYSQL
    • ORACLE

      public static final Database ORACLE
    • POSTGRESQL

      public static final Database POSTGRESQL
    • SQL_SERVER

      public static final Database SQL_SERVER
    • SYBASE

      public static final Database SYBASE
  • Method Details

    • values

      public static Database[] 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

      public static Database valueOf(String name)
      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 name
      NullPointerException - if the argument is null