Enum Class DatabaseActions.DatabaseType
- All Implemented Interfaces:
Serializable, Comparable<DatabaseActions.DatabaseType>, Constable
- Enclosing class:
DatabaseActions
Supported relational database engines for JDBC connection construction.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIBM DB2 database type.MySQL database type.Oracle database type using SID notation.Oracle database type using service-name notation.PostgreSQL database type.Microsoft SQL Server database type. -
Method Summary
Modifier and TypeMethodDescriptionstatic DatabaseActions.DatabaseTypeReturns the enum constant of this class with the specified name.static DatabaseActions.DatabaseType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
MY_SQL
MySQL database type. -
SQL_SERVER
Microsoft SQL Server database type. -
POSTGRES_SQL
PostgreSQL database type. -
ORACLE
Oracle database type using SID notation. -
ORACLE_SERVICE_NAME
Oracle database type using service-name notation. -
IBM_DB2
IBM DB2 database type.
-
-
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
-