Package org.hibernate.query.spi
Interface QueryParameterBindingTypeResolver
-
- All Known Subinterfaces:
SessionFactoryImplementor
- All Known Implementing Classes:
SessionFactoryDelegatingImpl
public interface QueryParameterBindingTypeResolverA 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 TypeConfigurationgetTypeConfiguration()<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()
-
-