Package org.hibernate.mapping
Interface BasicValue.Resolution<J>
-
- Enclosing class:
- BasicValue
public static interface BasicValue.Resolution<J>Resolved form ofBasicValueas part of interpreting the boot-time model into the run-time model
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PropertiesgetCombinedTypeParameters()Get the collection of type-parameters collected both locally as well as from the applied type-def, if oneJavaType<J>getDomainJavaDescriptor()The JavaTypeDescriptor for the value as part of the domain modelJdbcMappinggetJdbcMapping()JdbcTypegetJdbcTypeDescriptor()The JavaTypeDescriptor for the relational value as part of the relational model (its JDBC representation)BasicType<J>getLegacyResolvedBasicType()The BasicType resolved using the pre-6.0 rules.MutabilityPlan<J>getMutabilityPlan()The resolved MutabilityPlanJavaType<?>getRelationalJavaDescriptor()The JavaTypeDescriptor for the relational value as part of the relational model (its JDBC representation)BasicValueConvertergetValueConverter()Converter, if any, to convert values between the domain and relational JavaTypeDescriptor representations
-
-
-
Method Detail
-
getLegacyResolvedBasicType
BasicType<J> getLegacyResolvedBasicType()
The BasicType resolved using the pre-6.0 rules. This is temporarily needed because of the split in extracting / binding
-
getCombinedTypeParameters
default Properties getCombinedTypeParameters()
Get the collection of type-parameters collected both locally as well as from the applied type-def, if one
-
getJdbcMapping
JdbcMapping getJdbcMapping()
-
getDomainJavaDescriptor
JavaType<J> getDomainJavaDescriptor()
The JavaTypeDescriptor for the value as part of the domain model
-
getRelationalJavaDescriptor
JavaType<?> getRelationalJavaDescriptor()
The JavaTypeDescriptor for the relational value as part of the relational model (its JDBC representation)
-
getJdbcTypeDescriptor
JdbcType getJdbcTypeDescriptor()
The JavaTypeDescriptor for the relational value as part of the relational model (its JDBC representation)
-
getValueConverter
BasicValueConverter getValueConverter()
Converter, if any, to convert values between the domain and relational JavaTypeDescriptor representations
-
getMutabilityPlan
MutabilityPlan<J> getMutabilityPlan()
The resolved MutabilityPlan
-
-