| Interface | Description |
|---|---|
| JdbcType<T> |
An object that converts JDBC data from SQL types to Java types, and vice versa.
|
| Class | Description |
|---|---|
| AbstractJdbcType<T> |
A skeletal implementation for the
JdbcType interface . |
| AbstractResultSetType |
A JDBC type for RDBMS specific SQL type and
ResultSet. |
| ArrayType |
A JDBC type for
Types.ARRAY and Array. |
| BigDecimalType |
A JDBC type for
Types.DECIMAL and BigDecimal. |
| BigIntegerType |
A JDBC type for
Types.BIGINT and BigInteger. |
| BlobType |
A JDBC type for
Types.BLOB and Blob. |
| BooleanType |
A JDBC type for
Types.BOOLEAN and Boolean. |
| BytesType |
A JDBC type for
Types.BINARY and byte[]. |
| ByteType |
A JDBC type for
Types.SMALLINT and Byte. |
| ClobType |
A JDBC type for
Types.CLOB and Clob. |
| DateType |
A JDBC type for
Types.DATE and Date. |
| DoubleType |
A JDBC type for
Types.DOUBLE and Double. |
| EnumType<E extends java.lang.Enum<E>> |
A JDBC type for
Types.VARCHAR and Enum. |
| FloatType |
A JDBC type for
Types.FLOAT and Float. |
| IntegerAdaptiveBooleanType |
A JDBC type for
Types.INTEGER and Boolean. |
| IntegerType |
A JDBC type for
Types.INTEGER and Integer. |
| JdbcTypes |
Singleton objects of
JdbcType implementation classes. |
| LocalDateTimeType |
A JDBC type for
Types.TIMESTAMP and LocalDateTime. |
| LocalDateType |
A JDBC type for
Types.DATE and LocalDate. |
| LocalTimeType |
A JDBC type for
Types.TIME and LocalTime. |
| LongType |
A JDBC type for
Types.BIGINT and Long. |
| NClobType |
A JDBC type for
Types.NCLOB and NClob. |
| NStringType |
A JDBC type for
Types.NVARCHAR and String. |
| ObjectType |
A JDBC type for
Types.OTHER and Object. |
| PortableObjectType<T> |
A JDBC type for
Types.OTHER. |
| ShortType |
A JDBC type for
Types.SMALLINT and Short. |
| SQLXMLType |
A JDBC type for
Types.SQLXML and SQLXML. |
| StringType |
A JDBC type for
Types.VARCHAR and String. |
| TimestampType |
A JDBC type for
Types.TIMESTAMP and Timestamp. |
| TimeType |
A JDBC type for
Types.TIME and Time. |
| UtilDateType |
A JDBC type for
Types.TIMESTAMP and Date. |