Package org.hibernate.type
Class CustomType<J>
- java.lang.Object
-
- org.hibernate.type.AbstractType
-
- org.hibernate.type.CustomType<J>
-
- All Implemented Interfaces:
BasicType<J>,Type<J>,Serializable,BasicValuedMapping,Bindable,JdbcMapping,JdbcMappingContainer,MappingModelExpressible,MappingType,SqlExpressible,ValueMapping,BasicDomainType<J>,DomainType<J>,SimpleDomainType<J>,BindableType<J>,OutputableType<J>,ReturnableType<J>,SqmExpressible<J>,BasicType<J>,ConvertedBasicType<J>,JavaTypedExpressible,ProcedureParameterExtractionAware<J>,ProcedureParameterNamedBinder<J>,Type
public class CustomType<J> extends AbstractType implements ConvertedBasicType<J>, ProcedureParameterNamedBinder<J>, ProcedureParameterExtractionAware<J>
AdaptsUserTypeto the genericTypeinterface, in order to isolate user code from changes in the internal Type contracts.- See Also:
- Serialized Form
- "API Note:"
- Many of the interfaces implemented here are implemented just to handle the case of the wrapped type implementing them so we can pass them along. todo (6.0) : ^^ this introduces a problem in code that relies on `instance of` checks against any of these interfaces when the wrapped type does not
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hibernate.metamodel.mapping.Bindable
Bindable.JdbcValuesConsumer
-
Nested classes/interfaces inherited from interface jakarta.persistence.metamodel.Type
Type.PersistenceType
-
-
Field Summary
-
Fields inherited from class org.hibernate.type.AbstractType
LEGACY_DEFAULT_SIZE, LEGACY_DICTATED_SIZE
-
-
Constructor Summary
Constructors Constructor Description CustomType(UserType<J> userType, String[] registrationKeys, TypeConfiguration typeConfiguration)CustomType(UserType<J> userType, TypeConfiguration typeConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectassemble(Serializable cached, SharedSessionContractImplementor session, Object owner)Reconstruct the object from its disassembled state.booleancanDoExtraction()Can the given instance of this type actually perform the parameter value extractions?booleancanDoSetting()Can the given instance of this type actually set the parameter value by nameObjectdeepCopy(Object value, SessionFactoryImplementor factory)Return a deep copy of the persistent state, stopping at entities and at collections.Serializabledisassemble(Object value, SessionFactoryImplementor sessionFactory)Return a disassembled representation of the object.Objectdisassemble(Object value, SharedSessionContractImplementor session)Serializabledisassemble(Object value, SharedSessionContractImplementor session, Object owner)Return a disassembled representation of the object.booleanequals(Object obj)Jextract(CallableStatement statement, int startIndex, SharedSessionContractImplementor session)Perform the extractionJextract(CallableStatement statement, String paramName, SharedSessionContractImplementor session)Perform the extractionintgetColumnSpan(Mapping session)How many columns are used to persist this type.JavaType<J>getExpressibleJavaType()The descriptor for the Java type (i.e.intgetHashCode(Object x)Get a hash code, consistent with persistence "equality".Class<J>getJavaType()JavaType<J>getJavaTypeDescriptor()The descriptor for the Java type represented by this expressible typeJavaType<?>getJdbcJavaType()JdbcLiteralFormatter<J>getJdbcLiteralFormatter()The strategy for formatting values of this expressible type to a SQL literal.JdbcTypegetJdbcType()Descriptor for the SQL type mapped by this type.ValueBinder<J>getJdbcValueBinder()The strategy for binding values of this expressible type to JDBCPreparedStatements andCallableStatements.ValueExtractor<J>getJdbcValueExtractor()The strategy for extracting values of this expressible type from JDBC ResultSets, CallableStatements, etcJavaType<J>getMappedJavaType()StringgetName()Returns the abbreviated name of the type.String[]getRegistrationKeys()Get the names under which this type should be registered in the type registry.Class<J>getReturnedClass()The class handled by this type.int[]getSqlTypeCodes(Mapping pi)Return the JDBC types codes (perTypes) for the columns mapped by this type.UserType<J>getUserType()BasicValueConverter<J,Object>getValueConverter()Returns the converter that this basic type uses for transforming from the domain type, to the relational type, ornullif there is no conversion.inthashCode()booleanisDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)Should the parent be considered dirty, given both the old and current value?booleanisEqual(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state).booleanisMutable()Are objects of this type mutable.voidnullSafeSet(CallableStatement statement, J value, String name, SharedSessionContractImplementor session)Bind a value to the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter.voidnullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter.voidnullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement.Objectreplace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.boolean[]toColumnNullness(Object value, Mapping mapping)Given an instance of the type, return an array of boolean, indicating which mapped columns would be null.StringtoLoggableString(Object value, SessionFactoryImplementor factory)Generate a representation of the value for logging purposes.-
Methods inherited from class org.hibernate.type.AbstractType
beforeAssemble, compare, getHashCode, isAnyType, isAssociationType, isCollectionType, isComponentType, isDirty, isEntityType, isEqual, isModified, isSame, replace
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.metamodel.model.domain.BasicDomainType
areEqual, getPersistenceType
-
Methods inherited from interface org.hibernate.type.BasicType
forEachDisassembledJdbcValue, forEachJdbcType, forEachJdbcType, getJdbcMapping, getJdbcMappings, getJdbcTypeCount, getMappedType
-
Methods inherited from interface org.hibernate.metamodel.mapping.Bindable
forEachDisassembledJdbcValue, forEachJdbcValue, forEachJdbcValue
-
Methods inherited from interface org.hibernate.metamodel.model.domain.DomainType
getTypeName
-
Methods inherited from interface org.hibernate.metamodel.mapping.JdbcMapping
getCastType
-
Methods inherited from interface org.hibernate.metamodel.model.domain.SimpleDomainType
getBindableJavaType
-
Methods inherited from interface org.hibernate.query.sqm.SqmExpressible
isInstance, resolveExpressible
-
Methods inherited from interface org.hibernate.type.Type
beforeAssemble, compare, getHashCode, isAnyType, isAssociationType, isCollectionType, isComponentType, isDirty, isEntityType, isEqual, isModified, isSame, replace
-
Methods inherited from interface org.hibernate.metamodel.mapping.ValueMapping
treatAs
-
-
-
-
Constructor Detail
-
CustomType
public CustomType(UserType<J> userType, TypeConfiguration typeConfiguration) throws MappingException
- Throws:
MappingException
-
CustomType
public CustomType(UserType<J> userType, String[] registrationKeys, TypeConfiguration typeConfiguration) throws MappingException
- Throws:
MappingException
-
-
Method Detail
-
getJdbcValueExtractor
public ValueExtractor<J> getJdbcValueExtractor()
Description copied from interface:JdbcMappingThe strategy for extracting values of this expressible type from JDBC ResultSets, CallableStatements, etc- Specified by:
getJdbcValueExtractorin interfaceBasicType<J>- Specified by:
getJdbcValueExtractorin interfaceJdbcMapping
-
getJdbcValueBinder
public ValueBinder<J> getJdbcValueBinder()
Description copied from interface:JdbcMappingThe strategy for binding values of this expressible type to JDBCPreparedStatements andCallableStatements.- Specified by:
getJdbcValueBinderin interfaceBasicType<J>- Specified by:
getJdbcValueBinderin interfaceJdbcMapping
-
getJdbcLiteralFormatter
public JdbcLiteralFormatter<J> getJdbcLiteralFormatter()
Description copied from interface:JdbcMappingThe strategy for formatting values of this expressible type to a SQL literal.- Specified by:
getJdbcLiteralFormatterin interfaceBasicType<J>- Specified by:
getJdbcLiteralFormatterin interfaceJdbcMapping
-
getJdbcType
public JdbcType getJdbcType()
Description copied from interface:OutputableTypeDescriptor for the SQL type mapped by this type.- Specified by:
getJdbcTypein interfaceJdbcMapping- Specified by:
getJdbcTypein interfaceOutputableType<J>
-
getSqlTypeCodes
public int[] getSqlTypeCodes(Mapping pi)
Description copied from interface:TypeReturn the JDBC types codes (perTypes) for the columns mapped by this type. NOTE: The number of elements in this array matches the return fromType.getColumnSpan(org.hibernate.engine.spi.Mapping).- Specified by:
getSqlTypeCodesin interfaceType- Parameters:
pi- The mapping object :/- Returns:
- The JDBC type codes.
-
getRegistrationKeys
public String[] getRegistrationKeys()
Description copied from interface:BasicTypeGet the names under which this type should be registered in the type registry.- Specified by:
getRegistrationKeysin interfaceBasicType<J>- Returns:
- The keys under which to register this type.
-
getColumnSpan
public int getColumnSpan(Mapping session)
Description copied from interface:TypeHow many columns are used to persist this type. Always the same assqlTypes(mapping).length- Specified by:
getColumnSpanin interfaceType- Parameters:
session- The mapping object :/- Returns:
- The number of columns
-
getReturnedClass
public Class<J> getReturnedClass()
Description copied from interface:TypeThe class handled by this type.- Specified by:
getReturnedClassin interfaceType- Returns:
- The java type class handled by this type.
-
isEqual
public boolean isEqual(Object x, Object y) throws HibernateException
Description copied from interface:TypeCompare two instances of the class mapped by this type for persistence "equality" (equality of persistent state). This should always equate to some form of comparison of the value's internal state. As an example, for something like a date the comparison should be based on its internal "time" state based on the specific portion it is meant to represent (timestamp, date, time).- Specified by:
isEqualin interfaceType- Overrides:
isEqualin classAbstractType- Parameters:
x- The first valuey- The second value- Returns:
- True if there are considered equal (see discussion above).
- Throws:
HibernateException- A problem occurred performing the comparison
-
getHashCode
public int getHashCode(Object x)
Description copied from interface:TypeGet a hash code, consistent with persistence "equality". Again for most types the normal usage is to delegate to the value'shashCode.- Specified by:
getHashCodein interfaceType- Overrides:
getHashCodein classAbstractType- Parameters:
x- The value for which to retrieve a hash code- Returns:
- The hash code
-
assemble
public Object assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)
Description copied from interface:TypeReconstruct the object from its disassembled state. This method is the reciprocal ofType.disassemble(Object, SharedSessionContractImplementor, Object)- Specified by:
assemblein interfaceType- Overrides:
assemblein classAbstractType- Parameters:
cached- the disassembled state from the cachesession- the originating sessionowner- the parent entity object- Returns:
- the (re)assembled object
-
disassemble
public Serializable disassemble(Object value, SharedSessionContractImplementor session, Object owner)
Description copied from interface:TypeReturn a disassembled representation of the object. This is the value Hibernate will use in second level caching, so care should be taken to break values down to their simplest forms; for entities especially, this means breaking them down into their constituent parts.- Specified by:
disassemblein interfaceType- Overrides:
disassemblein classAbstractType- Parameters:
value- the value to cachesession- the originating sessionowner- optional parent entity object (needed for collections)- Returns:
- the disassembled, deep cloned state
-
disassemble
public Serializable disassemble(Object value, SessionFactoryImplementor sessionFactory) throws HibernateException
Description copied from interface:TypeReturn a disassembled representation of the object. This is the value Hibernate will use in as cache key, so care should be taken to break values down to their simplest forms; for entities especially, this means breaking them down into their constituent parts. For two disassembled objects A and B,Object.equals(Object)must behave likeType.isEqual(Object, Object).- Specified by:
disassemblein interfaceType- Overrides:
disassemblein classAbstractType- Parameters:
value- the value to cachesessionFactory- the session factory- Returns:
- the disassembled, deep cloned state
- Throws:
HibernateException- An error from Hibernate
-
disassemble
public Object disassemble(Object value, SharedSessionContractImplementor session)
- Specified by:
disassemblein interfaceBasicType<J>- Specified by:
disassemblein interfaceBindable- See Also:
As an example, consider the following domain model: ````
-
replace
public Object replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache) throws HibernateException
Description copied from interface:TypeDuring merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging. For immutable objects, or null values, it is safe to simply return the first parameter. For mutable objects, it is safe to return a copy of the first parameter. For objects with component values, it might make sense to recursively replace component values.- Specified by:
replacein interfaceType- Parameters:
original- the value from the detached entity being mergedtarget- the value in the managed entitysession- The originating sessionowner- The owner of the valuecopyCache- The cache of already copied/replaced values- Returns:
- the value to be merged
- Throws:
HibernateException- An error from Hibernate
-
nullSafeSet
public void nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:TypeBind a value represented by an instance of themapped classto the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter. Implementors should handle the possibility of null values. A multi-column type should bind parameters starting fromindex.- Specified by:
nullSafeSetin interfaceType- Parameters:
st- The JDBC prepared statement to which to bindvalue- the object to writeindex- starting parameter bind indexsettable- an array indicating which columns to bind/ignoresession- The originating session- Throws:
SQLException- An error from the JDBC driver
-
nullSafeSet
public void nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:TypeBind a value represented by an instance of themapped classto the JDBC prepared statement. Implementors should handle possibility of null values. A multi-column type should bind parameters starting fromindex.- Specified by:
nullSafeSetin interfaceType- Parameters:
st- The JDBC prepared statement to which to bindvalue- the object to writeindex- starting parameter bind indexsession- The originating session- Throws:
SQLException- An error from the JDBC driver
-
getName
public String getName()
Description copied from interface:TypeReturns the abbreviated name of the type.
-
deepCopy
public Object deepCopy(Object value, SessionFactoryImplementor factory) throws HibernateException
Description copied from interface:TypeReturn a deep copy of the persistent state, stopping at entities and at collections.- Specified by:
deepCopyin interfaceType- Parameters:
value- The value to be copiedfactory- The session factory- Returns:
- The deep copy
- Throws:
HibernateException- An error from Hibernate
-
isMutable
public boolean isMutable()
Description copied from interface:TypeAre objects of this type mutable. (With respect to the referencing object ... entities and collections are considered immutable because they manage their own internal state.)
-
toLoggableString
public String toLoggableString(Object value, SessionFactoryImplementor factory)
Description copied from interface:TypeGenerate a representation of the value for logging purposes.- Specified by:
toLoggableStringin interfaceType- Parameters:
value- The value to be loggedfactory- The session factory- Returns:
- The loggable representation
-
toColumnNullness
public boolean[] toColumnNullness(Object value, Mapping mapping)
Description copied from interface:TypeGiven an instance of the type, return an array of boolean, indicating which mapped columns would be null.- Specified by:
toColumnNullnessin interfaceType- Parameters:
value- an instance of the typemapping- The mapping abstraction- Returns:
- array indicating column nullness for a value instance
-
isDirty
public boolean isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session) throws HibernateException
Description copied from interface:TypeShould the parent be considered dirty, given both the old and current value?- Specified by:
isDirtyin interfaceType- Parameters:
old- the old valuecurrent- the current valuecheckable- An array of booleans indicating which columns making up the value are actually checkablesession- The session from which the request originated.- Returns:
- true if the field is dirty
- Throws:
HibernateException- A problem occurred performing the checking
-
canDoSetting
public boolean canDoSetting()
Description copied from interface:ProcedureParameterNamedBinderCan the given instance of this type actually set the parameter value by name- Specified by:
canDoSettingin interfaceProcedureParameterNamedBinder<J>- Returns:
trueindicates that @{link #nullSafeSet} calls will not fail
-
nullSafeSet
public void nullSafeSet(CallableStatement statement, J value, String name, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:ProcedureParameterNamedBinderBind a value to the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter. Implementors should handle the possibility of null values. Does not support multi-column type- Specified by:
nullSafeSetin interfaceProcedureParameterNamedBinder<J>- Parameters:
statement- The CallableStatement to which to bindvalue- the object to writename- parameter bind namesession- The originating session- Throws:
SQLException- An error from the JDBC driver
-
canDoExtraction
public boolean canDoExtraction()
Description copied from interface:OutputableTypeCan the given instance of this type actually perform the parameter value extractions?- Specified by:
canDoExtractionin interfaceOutputableType<J>- Returns:
trueindicates thatOutputableType.extract(java.sql.CallableStatement, int, org.hibernate.engine.spi.SharedSessionContractImplementor)calls will not fail due toIllegalStateException.
-
extract
public J extract(CallableStatement statement, int startIndex, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:OutputableTypePerform the extraction- Specified by:
extractin interfaceOutputableType<J>- Parameters:
statement- The CallableStatement from which to extract the parameter value(s).startIndex- The parameter index from which to extractsession- The originating session- Returns:
- The extracted value.
- Throws:
SQLException- Indicates an issue calling into the CallableStatement
-
extract
public J extract(CallableStatement statement, String paramName, SharedSessionContractImplementor session) throws SQLException
Description copied from interface:OutputableTypePerform the extraction- Specified by:
extractin interfaceOutputableType<J>- Parameters:
statement- The CallableStatement from which to extract the parameter value(s).paramName- The parameter names.session- The originating session- Returns:
- The extracted value.
- Throws:
SQLException- Indicates an issue calling into the CallableStatement
-
getJavaType
public Class<J> getJavaType()
- Specified by:
getJavaTypein interfaceType<J>
-
getMappedJavaType
public JavaType<J> getMappedJavaType()
- Specified by:
getMappedJavaTypein interfaceBasicType<J>- Specified by:
getMappedJavaTypein interfaceJdbcMapping- Specified by:
getMappedJavaTypein interfaceMappingType
-
getExpressibleJavaType
public JavaType<J> getExpressibleJavaType()
Description copied from interface:DomainTypeThe descriptor for the Java type (i.e.Class) represented by this DomainType.- Specified by:
getExpressibleJavaTypein interfaceBasicType<J>- Specified by:
getExpressibleJavaTypein interfaceDomainType<J>- Specified by:
getExpressibleJavaTypein interfaceJavaTypedExpressible<J>- Specified by:
getExpressibleJavaTypein interfaceSqmExpressible<J>- Specified by:
getExpressibleJavaTypein interfaceValueMapping- See Also:
DomainType.getTypeName()
-
getJavaTypeDescriptor
public JavaType<J> getJavaTypeDescriptor()
Description copied from interface:JdbcMappingThe descriptor for the Java type represented by this expressible type- Specified by:
getJavaTypeDescriptorin interfaceBasicType<J>- Specified by:
getJavaTypeDescriptorin interfaceJdbcMapping
-
getJdbcJavaType
public JavaType<?> getJdbcJavaType()
- Specified by:
getJdbcJavaTypein interfaceJdbcMapping
-
getValueConverter
public BasicValueConverter<J,Object> getValueConverter()
Description copied from interface:JdbcMappingReturns the converter that this basic type uses for transforming from the domain type, to the relational type, ornullif there is no conversion.- Specified by:
getValueConverterin interfaceBasicType<J>- Specified by:
getValueConverterin interfaceConvertedBasicType<J>- Specified by:
getValueConverterin interfaceJdbcMapping
-
-