Enum Class JdbcTypesEnum
- All Implemented Interfaces:
Serializable
,Comparable<JdbcTypesEnum>
,Constable
This Enumeration provides a handy wrapper around
Types
. This makes it
possible to look up String representation of the enum constant's name, and thus
looking up the respective JDBC Type (int-value).- Since:
- 2.1
- Author:
- Gunnar Hillert
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic JdbcTypesEnum
convertToJdbcTypesEnum
(String sqlTypeAsString) Retrieve the matching enum constant for a provided String representation of the SQL Types.int
getCode()
Get the numerical representation of the JDBC Type enum.static JdbcTypesEnum
Returns the enum constant of this class with the specified name.static JdbcTypesEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BIT
-
TINYINT
-
SMALLINT
-
INTEGER
-
BIGINT
-
FLOAT
-
REAL
-
DOUBLE
-
NUMERIC
-
DECIMAL
-
CHAR
-
VARCHAR
-
LONGVARCHAR
-
DATE
-
TIME
-
TIMESTAMP
-
BINARY
-
VARBINARY
-
LONGVARBINARY
-
NULL
-
OTHER
-
JAVA_OBJECT
-
DISTINCT
-
STRUCT
-
ARRAY
-
BLOB
-
CLOB
-
REF
-
DATALINK
-
BOOLEAN
-
ROWID
-
NCHAR
-
NVARCHAR
-
LONGNVARCHAR
-
NCLOB
-
SQLXML
-
-
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
-
getCode
public int getCode()Get the numerical representation of the JDBC Type enum. The numerical value matches exactly the equivalent value inTypes
- Returns:
- The numerical representation of the constant.
-
convertToJdbcTypesEnum
Retrieve the matching enum constant for a provided String representation of the SQL Types. The provided name must match exactly the identifier as used to declare the enum constant.- Parameters:
sqlTypeAsString
- Name of the enum to convert. Must be not null and not empty.- Returns:
- The enumeration that matches. Returns Null of no match was found.
-