Package | Description |
---|---|
org.hibernate.dialect |
This package abstracts the SQL dialect of the underlying database.
|
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
org.hibernate.type.descriptor | |
org.hibernate.type.descriptor.converter |
Support for handling JPA
AttributeConverter instances as part of the
Hibernate Type system. |
org.hibernate.type.descriptor.sql |
Defines handling of the standard JDBC-defined types, as declared by
Types . |
Modifier and Type | Method and Description |
---|---|
protected SqlTypeDescriptor |
DB2Dialect.getSqlTypeDescriptorOverride(int sqlCode) |
protected SqlTypeDescriptor |
AbstractHANADialect.getSqlTypeDescriptorOverride(int sqlCode) |
protected SqlTypeDescriptor |
SybaseDialect.getSqlTypeDescriptorOverride(int sqlCode) |
protected SqlTypeDescriptor |
SybaseASE15Dialect.getSqlTypeDescriptorOverride(int sqlCode) |
protected SqlTypeDescriptor |
Dialect.getSqlTypeDescriptorOverride(int sqlCode)
Returns the
SqlTypeDescriptor that should be used to handle the given JDBC type code. |
protected SqlTypeDescriptor |
Oracle8iDialect.getSqlTypeDescriptorOverride(int sqlCode) |
protected SqlTypeDescriptor |
SQLServerDialect.getSqlTypeDescriptorOverride(int sqlCode) |
SqlTypeDescriptor |
PostgreSQL81Dialect.getSqlTypeDescriptorOverride(int sqlCode) |
SqlTypeDescriptor |
Dialect.remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor)
Allows the dialect to override a
SqlTypeDescriptor . |
Modifier and Type | Method and Description |
---|---|
SqlTypeDescriptor |
Dialect.remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor)
Allows the dialect to override a
SqlTypeDescriptor . |
Modifier and Type | Class and Description |
---|---|
static class |
PostgresUUIDType.PostgresUUIDSqlTypeDescriptor |
Modifier and Type | Method and Description |
---|---|
SqlTypeDescriptor |
AbstractStandardBasicType.getSqlTypeDescriptor() |
protected SqlTypeDescriptor |
AbstractStandardBasicType.remapSqlTypeDescriptor(WrapperOptions options) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractStandardBasicType.setSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor) |
Constructor and Description |
---|
AbstractSingleColumnStandardBasicType(SqlTypeDescriptor sqlTypeDescriptor,
JavaTypeDescriptor<T> javaTypeDescriptor) |
AbstractStandardBasicType(SqlTypeDescriptor sqlTypeDescriptor,
JavaTypeDescriptor<T> javaTypeDescriptor) |
BooleanType(SqlTypeDescriptor sqlTypeDescriptor,
BooleanTypeDescriptor javaTypeDescriptor) |
Modifier and Type | Method and Description |
---|---|
SqlTypeDescriptor |
WrapperOptions.remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor)
Allow remapping of descriptors for dealing with sql type.
|
Modifier and Type | Method and Description |
---|---|
SqlTypeDescriptor |
WrapperOptions.remapSqlTypeDescriptor(SqlTypeDescriptor sqlTypeDescriptor)
Allow remapping of descriptors for dealing with sql type.
|
Modifier and Type | Class and Description |
---|---|
class |
AttributeConverterSqlTypeDescriptorAdapter
Adapter for incorporating JPA
AttributeConverter handling into the SqlTypeDescriptor contract. |
Constructor and Description |
---|
AttributeConverterSqlTypeDescriptorAdapter(AttributeConverter converter,
SqlTypeDescriptor delegate,
JavaTypeDescriptor intermediateJavaTypeDescriptor) |
AttributeConverterTypeAdapter(String name,
AttributeConverter<? extends T,?> attributeConverter,
SqlTypeDescriptor sqlTypeDescriptorAdapter,
Class modelType,
Class jdbcType,
JavaTypeDescriptor<T> entityAttributeJavaTypeDescriptor) |
Modifier and Type | Class and Description |
---|---|
class |
BigIntTypeDescriptor
Descriptor for
BIGINT handling. |
class |
BinaryTypeDescriptor
Descriptor for
BINARY handling. |
class |
BitTypeDescriptor
Descriptor for
BIT handling. |
class |
BlobTypeDescriptor
Descriptor for
BLOB handling. |
class |
BooleanTypeDescriptor
Descriptor for
BOOLEAN handling. |
class |
CharTypeDescriptor
Descriptor for
CHAR handling. |
class |
ClobTypeDescriptor
Descriptor for
CLOB handling. |
class |
DateTypeDescriptor
Descriptor for
DATE handling. |
class |
DecimalTypeDescriptor
Descriptor for
DECIMAL handling. |
class |
DoubleTypeDescriptor
Descriptor for
DOUBLE handling. |
class |
FloatTypeDescriptor
Descriptor for
FLOAT handling. |
class |
IntegerTypeDescriptor
Descriptor for
INTEGER handling. |
class |
LongNVarcharTypeDescriptor
Descriptor for
LONGNVARCHAR handling. |
class |
LongVarbinaryTypeDescriptor
Descriptor for
LONGVARBINARY handling. |
class |
LongVarcharTypeDescriptor
Descriptor for
LONGVARCHAR handling. |
class |
NCharTypeDescriptor
Descriptor for
NCHAR handling. |
class |
NClobTypeDescriptor
Descriptor for
NCLOB handling. |
class |
NumericTypeDescriptor
Descriptor for
NUMERIC handling. |
class |
NVarcharTypeDescriptor
Descriptor for
NVARCHAR handling. |
class |
RealTypeDescriptor
Descriptor for
REAL handling. |
class |
SmallIntTypeDescriptor
Descriptor for
SMALLINT handling. |
static class |
SqlTypeDescriptorRegistry.ObjectSqlTypeDescriptor |
class |
TimestampTypeDescriptor
Descriptor for
TIMESTAMP handling. |
class |
TimeTypeDescriptor
Descriptor for
TIME handling. |
class |
TinyIntTypeDescriptor
Descriptor for
TINYINT handling. |
class |
VarbinaryTypeDescriptor
Descriptor for
VARBINARY handling. |
class |
VarcharTypeDescriptor
Descriptor for
VARCHAR handling. |
Modifier and Type | Method and Description |
---|---|
SqlTypeDescriptor |
SqlTypeDescriptorRegistry.getDescriptor(int jdbcTypeCode) |
SqlTypeDescriptor |
BasicExtractor.getSqlDescriptor() |
SqlTypeDescriptor |
BasicBinder.getSqlDescriptor() |
Modifier and Type | Method and Description |
---|---|
void |
SqlTypeDescriptorRegistry.addDescriptor(SqlTypeDescriptor sqlTypeDescriptor) |
Constructor and Description |
---|
BasicBinder(JavaTypeDescriptor<J> javaDescriptor,
SqlTypeDescriptor sqlDescriptor) |
BasicExtractor(JavaTypeDescriptor<J> javaDescriptor,
SqlTypeDescriptor sqlDescriptor) |
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.