Uses of Interface
org.hibernate.query.spi.QueryParameterBinding
-
Packages that use QueryParameterBinding Package Description org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi org.hibernate.query.internal org.hibernate.query.procedure org.hibernate.query.spi org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.sql.internal -
-
Uses of QueryParameterBinding in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement QueryParameterBinding Modifier and Type Class Description class
ProcedureParameterBindingImpl<T>
Implementation of theProcedureParameterBinding
contract.Method parameters in org.hibernate.procedure.internal with type arguments of type QueryParameterBinding Modifier and Type Method Description void
ProcedureParamBindings. visitBindings(BiConsumer<QueryParameterImplementor<?>,QueryParameterBinding<?>> action)
-
Uses of QueryParameterBinding in org.hibernate.procedure.spi
Subinterfaces of QueryParameterBinding in org.hibernate.procedure.spi Modifier and Type Interface Description interface
ProcedureParameterBindingImplementor<T>
-
Uses of QueryParameterBinding in org.hibernate.query.internal
Classes in org.hibernate.query.internal that implement QueryParameterBinding Modifier and Type Class Description class
QueryParameterBindingImpl<T>
The standard Hibernate QueryParameterBinding implementationMethods in org.hibernate.query.internal that return QueryParameterBinding Modifier and Type Method Description <P> QueryParameterBinding<P>
QueryParameterBindingsImpl. getBinding(int position)
<P> QueryParameterBinding<P>
QueryParameterBindingsImpl. getBinding(String name)
<P> QueryParameterBinding<P>
QueryParameterBindingsImpl. getBinding(QueryParameterImplementor<P> parameter)
protected <T> QueryParameterBinding<T>
QueryParameterBindingsImpl. makeBinding(QueryParameterImplementor<T> queryParameter)
-
Uses of QueryParameterBinding in org.hibernate.query.procedure
Subinterfaces of QueryParameterBinding in org.hibernate.query.procedure Modifier and Type Interface Description interface
ProcedureParameterBinding<T>
Describes an input value binding for any IN/INOUT parameters. -
Uses of QueryParameterBinding in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return QueryParameterBinding Modifier and Type Method Description <P> QueryParameterBinding<P>
QueryParameterBindings. getBinding(int position)
Access to the binding via position<P> QueryParameterBinding<P>
QueryParameterBindings. getBinding(String name)
Access to the binding via namedefault <P> QueryParameterBinding<P>
QueryParameterBindings. getBinding(QueryParameter<P> parameter)
Access to the binding via QueryParameter reference<P> QueryParameterBinding<P>
QueryParameterBindings. getBinding(QueryParameterImplementor<P> parameter)
Access to the binding via QueryParameter referenceprotected <P> QueryParameterBinding<P>
AbstractCommonQueryContract. locateBinding(int position)
protected <P> QueryParameterBinding<P>
AbstractCommonQueryContract. locateBinding(jakarta.persistence.Parameter<P> parameter)
protected <P> QueryParameterBinding<P>
AbstractCommonQueryContract. locateBinding(String name)
protected <P> QueryParameterBinding<P>
AbstractCommonQueryContract. locateBinding(QueryParameterImplementor<P> parameter)
Method parameters in org.hibernate.query.spi with type arguments of type QueryParameterBinding Modifier and Type Method Description void
QueryParameterBindings. visitBindings(BiConsumer<QueryParameterImplementor<?>,QueryParameterBinding<?>> action)
-
Uses of QueryParameterBinding in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type QueryParameterBinding Modifier and Type Method Description static Bindable
SqmUtil. determineParameterType(QueryParameterBinding<?> binding, QueryParameterImplementor<?> parameter, List<SqmParameter<?>> sqmParameters, SqmParameterMappingModelResolutionAccess mappingModelResolutionAccess, SessionFactoryImplementor sessionFactory)
-
Uses of QueryParameterBinding in org.hibernate.query.sqm.sql.internal
Constructor parameters in org.hibernate.query.sqm.sql.internal with type arguments of type QueryParameterBinding Constructor Description SqmParameterInterpretation(SqmParameter<?> sqmParameter, QueryParameterImplementor<?> queryParameter, List<JdbcParameter> jdbcParameters, MappingModelExpressible<?> valueMapping, Function<QueryParameterImplementor<?>,QueryParameterBinding<?>> queryParameterBindingResolver)
-