Uses of Interface
org.hibernate.type.descriptor.jdbc.JdbcTypeConstructor
-
Packages that use JdbcTypeConstructor Package Description org.hibernate.boot.model This package defines the boot-time metamodel, which is an interpretation of the domain model (entity classes, embeddable classes, and attributes) and the mapping of these "domain model parts" to the database.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.type.descriptor.jdbc Defines handling of almost the full range of standard JDBC-defined SQL data types.org.hibernate.type.descriptor.jdbc.spi -
-
Uses of JdbcTypeConstructor in org.hibernate.boot.model
Methods in org.hibernate.boot.model with parameters of type JdbcTypeConstructor Modifier and Type Method Description default void
TypeContributions. contributeJdbcTypeConstructor(JdbcTypeConstructor typeConstructor)
-
Uses of JdbcTypeConstructor in org.hibernate.dialect
Classes in org.hibernate.dialect that implement JdbcTypeConstructor Modifier and Type Class Description class
OracleArrayJdbcTypeConstructor
Factory forOracleArrayJdbcType
.class
OracleNestedTableJdbcTypeConstructor
Factory forOracleNestedTableJdbcType
.class
PostgreSQLArrayJdbcTypeConstructor
Factory forPostgreSQLArrayJdbcType
.Methods in org.hibernate.dialect that return JdbcTypeConstructor Modifier and Type Method Description static JdbcTypeConstructor
OracleJdbcHelper. getArrayJdbcTypeConstructor(ServiceRegistry serviceRegistry)
static JdbcTypeConstructor
OracleJdbcHelper. getNestedTableJdbcTypeConstructor(ServiceRegistry serviceRegistry)
-
Uses of JdbcTypeConstructor in org.hibernate.type.descriptor.jdbc
Classes in org.hibernate.type.descriptor.jdbc that implement JdbcTypeConstructor Modifier and Type Class Description class
ArrayJdbcTypeConstructor
Factory forArrayJdbcType
. -
Uses of JdbcTypeConstructor in org.hibernate.type.descriptor.jdbc.spi
Methods in org.hibernate.type.descriptor.jdbc.spi that return JdbcTypeConstructor Modifier and Type Method Description JdbcTypeConstructor
JdbcTypeRegistry. getConstructor(int jdbcTypeCode)
Methods in org.hibernate.type.descriptor.jdbc.spi with parameters of type JdbcTypeConstructor Modifier and Type Method Description void
JdbcTypeRegistry. addTypeConstructor(int jdbcTypeCode, JdbcTypeConstructor jdbcTypeConstructor)
void
JdbcTypeRegistry. addTypeConstructor(JdbcTypeConstructor jdbcTypeConstructor)
-