Class UserTypeResolution<T>
- java.lang.Object
-
- org.hibernate.boot.model.process.internal.UserTypeResolution<T>
-
- All Implemented Interfaces:
BasicValue.Resolution<T>
public class UserTypeResolution<T> extends Object implements BasicValue.Resolution<T>
-
-
Constructor Summary
Constructors Constructor Description UserTypeResolution(CustomType<T> userTypeAdapter, MutabilityPlan<T> explicitMutabilityPlan, Properties combinedTypeParameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Properties
getCombinedTypeParameters()
Get the collection of type-parameters collected both locally as well as from the applied type-def, if oneJavaType<T>
getDomainJavaType()
The JavaType for the value as part of the domain modelJdbcMapping
getJdbcMapping()
JdbcType
getJdbcType()
The JavaType for the relational value as part of the relational model (its JDBC representation)BasicType<T>
getLegacyResolvedBasicType()
The BasicType resolved using the pre-6.0 rules.MutabilityPlan<T>
getMutabilityPlan()
The resolved MutabilityPlanJavaType<?>
getRelationalJavaType()
The JavaType for the relational value as part of the relational model (its JDBC representation)BasicValueConverter<T,?>
getValueConverter()
Converter, if any, to convert values between the domain and relational JavaType representations-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.mapping.BasicValue.Resolution
updateResolution
-
-
-
-
Constructor Detail
-
UserTypeResolution
public UserTypeResolution(CustomType<T> userTypeAdapter, MutabilityPlan<T> explicitMutabilityPlan, Properties combinedTypeParameters)
-
-
Method Detail
-
getDomainJavaType
public JavaType<T> getDomainJavaType()
Description copied from interface:BasicValue.Resolution
The JavaType for the value as part of the domain model- Specified by:
getDomainJavaType
in interfaceBasicValue.Resolution<T>
-
getRelationalJavaType
public JavaType<?> getRelationalJavaType()
Description copied from interface:BasicValue.Resolution
The JavaType for the relational value as part of the relational model (its JDBC representation)- Specified by:
getRelationalJavaType
in interfaceBasicValue.Resolution<T>
-
getJdbcType
public JdbcType getJdbcType()
Description copied from interface:BasicValue.Resolution
The JavaType for the relational value as part of the relational model (its JDBC representation)- Specified by:
getJdbcType
in interfaceBasicValue.Resolution<T>
-
getValueConverter
public BasicValueConverter<T,?> getValueConverter()
Description copied from interface:BasicValue.Resolution
Converter, if any, to convert values between the domain and relational JavaType representations- Specified by:
getValueConverter
in interfaceBasicValue.Resolution<T>
-
getMutabilityPlan
public MutabilityPlan<T> getMutabilityPlan()
Description copied from interface:BasicValue.Resolution
The resolved MutabilityPlan- Specified by:
getMutabilityPlan
in interfaceBasicValue.Resolution<T>
-
getLegacyResolvedBasicType
public BasicType<T> getLegacyResolvedBasicType()
Description copied from interface:BasicValue.Resolution
The BasicType resolved using the pre-6.0 rules. This is temporarily needed because of the split in extracting / binding- Specified by:
getLegacyResolvedBasicType
in interfaceBasicValue.Resolution<T>
-
getCombinedTypeParameters
public Properties getCombinedTypeParameters()
Description copied from interface:BasicValue.Resolution
Get the collection of type-parameters collected both locally as well as from the applied type-def, if one- Specified by:
getCombinedTypeParameters
in interfaceBasicValue.Resolution<T>
-
getJdbcMapping
public JdbcMapping getJdbcMapping()
- Specified by:
getJdbcMapping
in interfaceBasicValue.Resolution<T>
-
-