Package com.randomnoun.common.db.enums
Enum Class DatabaseTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<DatabaseTypeEnum>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFirebirdA generic database accessed via the JDBC metadata functionsA Jet (MSAccess) database accessed via the jdbc:odbc bridgeA Jet (MSAccess) database accessed via the JACOB DAO libraryMySQLOracleMicrosoft SQL Server -
Method Summary
Modifier and TypeMethodDescriptionstatic DatabaseTypeEnum
Returns the enum constant of this class with the specified name.static DatabaseTypeEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JET
A Jet (MSAccess) database accessed via the jdbc:odbc bridge -
JET_DAO
A Jet (MSAccess) database accessed via the JACOB DAO library -
ORACLE
Oracle -
MYSQL
MySQL -
SQLSERVER
Microsoft SQL Server -
FIREBIRD
Firebird -
GENERIC
A generic database accessed via the JDBC metadata functions
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-