Package org.hibernate.query.spi
Interface QueryParameterBindingTypeResolver
-
- All Known Subinterfaces:
SessionFactoryImplementor
- All Known Implementing Classes:
SessionFactoryDelegatingImpl
,SessionFactoryImpl
public interface QueryParameterBindingTypeResolver
A resolver for Type based on a parameter value being bound, when no explicit type information is supplied.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeConfiguration
getTypeConfiguration()
<T> BindableType<T>
resolveParameterBindType(Class<T> clazz)
<T> BindableType<? extends T>
resolveParameterBindType(T bindValue)
-
-
-
Method Detail
-
resolveParameterBindType
<T> BindableType<? extends T> resolveParameterBindType(T bindValue)
-
resolveParameterBindType
<T> BindableType<T> resolveParameterBindType(Class<T> clazz)
-
getTypeConfiguration
TypeConfiguration getTypeConfiguration()
-
-