Uses of Interface
org.hibernate.query.spi.QueryParameterBinding
-
Packages that use QueryParameterBinding Package Description org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions.org.hibernate.query.internal org.hibernate.query.procedure Support SQL functions in the SQM model.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation details -
-
Uses of QueryParameterBinding in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement QueryParameterBinding Modifier and Type Class Description classProcedureParameterBindingImpl<T>Implementation of theProcedureParameterBindingcontract.Method parameters in org.hibernate.procedure.internal with type arguments of type QueryParameterBinding Modifier and Type Method Description voidProcedureParamBindings. 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 interfaceProcedureParameterBindingImplementor<T> -
Uses of QueryParameterBinding in org.hibernate.query.internal
Classes in org.hibernate.query.internal that implement QueryParameterBinding Modifier and Type Class Description classQueryParameterBindingImpl<T>The standard implementation ofQueryParameterBinding.Methods 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) -
Uses of QueryParameterBinding in org.hibernate.query.procedure
Subinterfaces of QueryParameterBinding in org.hibernate.query.procedure Modifier and Type Interface Description interfaceProcedureParameterBinding<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(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 voidQueryParameterBindings. 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 BindableSqmUtil. determineParameterType(QueryParameterBinding<?> binding, QueryParameterImplementor<?> parameter, List<SqmParameter<?>> sqmParameters, SqmParameterMappingModelResolutionAccess mappingModelResolutionAccess, SessionFactoryImplementor sessionFactory)
-