Package lumis.util
Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- lumis.util.DatabaseType
-
- All Implemented Interfaces:
Serializable
,Comparable<DatabaseType>
@StableMinor(version="14.0", sinceVersion="4.0") public enum DatabaseType extends Enum<DatabaseType>
Database type- Since:
- 4.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HYPERSONIC_SQL
MY_SQL
ORACLE
SQL_SERVER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DatabaseType
getDatabaseType()
Returns an instance ofDatabaseType
corresponding to the database the portal's default transaction accesses.static DatabaseType
getDatabaseType(Connection connection)
Returns an instance ofDatabaseType
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.
-
-
-
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 nameNullPointerException
- if the argument is null
-
getProductName
public String getProductName()
-
getDatabaseType
public static DatabaseType getDatabaseType(Connection connection) throws SQLException
Returns an instance ofDatabaseType
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 ofDatabaseType
corresponding to the database the portal's default transaction accesses.- Returns:
- the database type.
- Since:
- 4.0.11
-
-