lumis.util
Enum DatabaseType

Package class diagram package DatabaseType
java.lang.Object
  extended by java.lang.Enum<DatabaseType>
      extended by lumis.util.DatabaseType
All Implemented Interfaces:
Serializable, Comparable<DatabaseType>

@StableMinor(version="6.2",
             sinceVersion="4.0")
public enum DatabaseType
extends Enum<DatabaseType>

Database type

Since:
4.0.0

Enum Constant Summary
HYPERSONIC_SQL
           
MY_SQL
           
ORACLE
           
SQL_SERVER
           
 
Method Summary
static DatabaseType getDatabaseType()
          Returns an instance of DatabaseType corresponding to the database the portal's default transaction accesses.
static DatabaseType getDatabaseType(Connection connection)
          Returns an instance of DatabaseType corresponding to the database the given connection is connected to.
 String getProductName()
           
static DatabaseType valueOf(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
 

Enum Constant Detail

ORACLE

public static final DatabaseType ORACLE

SQL_SERVER

public static final DatabaseType SQL_SERVER

MY_SQL

public static final DatabaseType MY_SQL

HYPERSONIC_SQL

public static final DatabaseType HYPERSONIC_SQL
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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getProductName

public String getProductName()

getDatabaseType

public static DatabaseType getDatabaseType(Connection connection)
                                    throws 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:
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


Lumisportal  6.2.0.120405 - Copyright © 2006–2012 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.