Package lumis.util

Enum DatabaseType

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

    @StableMinor(version="17.0",
                 sinceVersion="4.0")
    public enum DatabaseType
    extends java.lang.Enum<DatabaseType>
    Database type
    Since:
    4.0.0
    Version:
    $Revision: 26587 $ $Date: 2024-08-26 21:09:17 -0300 (Mon, 26 Aug 2024) $
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static DatabaseType getDatabaseType()
      Returns an instance of DatabaseType corresponding to the database the portal's default transaction accesses.
      static DatabaseType getDatabaseType​(java.sql.Connection connection)
      Returns an instance of DatabaseType corresponding to the database the given connection is connected to.
      java.lang.String getProductName()  
      static DatabaseType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DatabaseType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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()
      • getDatabaseType

        public static DatabaseType getDatabaseType​(java.sql.Connection connection)
                                            throws java.sql.SQLException
        Returns an instance of DatabaseType corresponding to the database the given connection is connected to.
        Parameters:
        connection - the connection.
        Returns:
        the database type, never null.
        Throws:
        java.sql.SQLException - if it was not possible to obtain the corresponding database type.
      • getDatabaseType

        public static DatabaseType getDatabaseType()
        Returns an instance of DatabaseType corresponding to the database the portal's default transaction accesses.
        Returns:
        the database type.
        Since:
        4.0.11