Enum DatabaseType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<DatabaseType>

    public enum DatabaseType
    extends java.lang.Enum<DatabaseType>
    Enum representing a database type, such as DB2 or oracle. The type also contains a product name, which is expected to be the same as the product name provided by the database driver's metadata.
    Since:
    2.0
    Author:
    Lucas Ward
    • Method Detail

      • values

        public static DatabaseType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DatabaseType c : DatabaseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DatabaseType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getProductName

        public java.lang.String getProductName()
      • fromProductName

        public static DatabaseType fromProductName​(java.lang.String productName)
        Static method to obtain a DatabaseType from the provided product name.
        Parameters:
        productName - String containing the product name.
        Returns:
        the DatabaseType for given product name.
        Throws:
        java.lang.IllegalArgumentException - if none is found.
      • fromMetaData

        public static DatabaseType fromMetaData​(javax.sql.DataSource dataSource)
                                         throws org.springframework.jdbc.support.MetaDataAccessException
        Convenience method that pulls a database product name from the DataSource's metadata.
        Parameters:
        dataSource - DataSource to the database to be used.
        Returns:
        DatabaseType for the DataSource specified.
        Throws:
        org.springframework.jdbc.support.MetaDataAccessException - thrown if error occured during Metadata lookup.