Package org.hibernate.query.spi
Interface QueryParameterBindingTypeResolver
-
- All Known Subinterfaces:
MappingMetamodelImplementor
,SessionFactoryImplementor
- All Known Implementing Classes:
MappingMetamodelImpl
,MockSessionFactory
,ProcessorSessionFactory
,QueryParameterBindingTypeResolverImpl
,SessionFactoryDelegatingImpl
,SessionFactoryImpl
@Incubating public interface QueryParameterBindingTypeResolver
A resolver forBindableType
based on a parameter value being bound, when no explicit type information is supplied.- API Note:
- This interface was originally a supertype of
SessionFactoryImplementor
, but this is now a deprecated relationship. Its functionality should now be accessed via its new subtypeMappingMetamodelImplementor
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MappingMetamodel
getMappingMetamodel()
TypeConfiguration
getTypeConfiguration()
<T> BindableType<T>
resolveParameterBindType(Class<T> clazz)
<T> BindableType<? super T>
resolveParameterBindType(T bindValue)
-
-
-
Method Detail
-
resolveParameterBindType
<T> BindableType<? super T> resolveParameterBindType(T bindValue)
-
resolveParameterBindType
<T> BindableType<T> resolveParameterBindType(Class<T> clazz)
-
getTypeConfiguration
TypeConfiguration getTypeConfiguration()
-
getMappingMetamodel
MappingMetamodel getMappingMetamodel()
-
-