Uses of Interface
org.hibernate.query.QueryParameter
Packages that use QueryParameter
Package
Description
An SPI for dealing with parameters of native queries.
Defines support for executing database stored procedures and functions and accessing their outputs.
Defines the internal implementation of the stored procedure SPI.
Defines an SPI for calling stored procedures and functions.
Everything related to HQL/JPQL, native SQL, and criteria queries.
SPIs for HQL support.
Support SQL functions in the SQM model.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
Implementation of the SPIs for native SQL query support.
SPIs for native SQL query support.
This package defines a semantic model of HQL queries.
Package for the SQM-backed Query implementation details
SPI-level SQM contracts
Nodes representing expressions in the SQM tree.
-
Uses of QueryParameter in org.hibernate.engine.query.spi
Classes in org.hibernate.engine.query.spi that implement QueryParameterModifier and TypeClassDescriptionclassclassDescriptor regarding a named parameter.classDescriptor regarding an ordinal parameter. -
Uses of QueryParameter in org.hibernate.procedure
Subinterfaces of QueryParameter in org.hibernate.procedureModifier and TypeInterfaceDescriptioninterfaceDescribes the function return for ProcedureCalls that represent calls to a function ("{? = call ...}syntax) rather that a proc ({call ...}syntax) -
Uses of QueryParameter in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement QueryParameterMethods in org.hibernate.procedure.internal that return types with arguments of type QueryParameterModifier and TypeMethodDescriptionSet<? extends QueryParameter<?>>ProcedureParameterMetadataImpl.getRegistrations()Methods in org.hibernate.procedure.internal with parameters of type QueryParameterModifier and TypeMethodDescriptionbooleanProcedureParameterMetadataImpl.containsReference(QueryParameter parameter) ProcedureCallImpl.setParameter(QueryParameter<P> parameter, P value) ProcedureCallImpl.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) Method parameters in org.hibernate.procedure.internal with type arguments of type QueryParameterModifier and TypeMethodDescriptionvoidProcedureParameterMetadataImpl.visitRegistrations(Consumer<? extends QueryParameter<?>> action) -
Uses of QueryParameter in org.hibernate.procedure.spi
Subinterfaces of QueryParameter in org.hibernate.procedure.spiModifier and TypeInterfaceDescriptioninterfaceinterfaceSPI extension for ProcedureParameter -
Uses of QueryParameter in org.hibernate.query
Methods in org.hibernate.query that return QueryParameterModifier and TypeMethodDescriptionParameterMetadata.findQueryParameter(int positionLabel) Find the QueryParameter registered under the given position-label, if one.ParameterMetadata.findQueryParameter(String name) Find the QueryParameter registered under the given name, if one.ParameterMetadata.getQueryParameter(int positionLabel) Get the QueryParameter reference registered here under the given position-label.ParameterMetadata.getQueryParameter(String name) Get the QueryParameter reference registered here under the given name.<P> QueryParameter<P>A deeper resolution attempt from a JPA parameter reference to Hibernate's contract.Methods in org.hibernate.query that return types with arguments of type QueryParameterModifier and TypeMethodDescriptionSet<? extends QueryParameter<?>>ParameterMetadata.getRegistrations()Methods in org.hibernate.query with parameters of type QueryParameterModifier and TypeMethodDescriptionbooleanParameterMetadata.containsReference(QueryParameter<?> parameter) Is this parameter reference registered in this collection?default <T> BindableType<T>ParameterMetadata.getInferredParameterType(QueryParameter<T> parameter) CommonQueryContract.setParameter(QueryParameter<P> parameter, P value, Class<P> type) Bind an argument to the query parameter represented by the givenQueryParameter, using the givenClassreference to attempt to infer theBindableTypeto use.CommonQueryContract.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) Bind an argument to the query parameter represented by the givenQueryParameter, using the givenBindableType.CommonQueryContract.setParameter(QueryParameter<T> parameter, T value) Bind an argument to the query parameter represented by the givenQueryParameter.<P> MutationQueryMutationQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> MutationQueryMutationQuery.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> MutationQueryMutationQuery.setParameter(QueryParameter<T> parameter, T value) <P> NativeQuery<T>NativeQuery.setParameter(QueryParameter<P> parameter, P val) <P> NativeQuery<T>NativeQuery.setParameter(QueryParameter<P> parameter, P val, Class<P> type) <P> NativeQuery<T>NativeQuery.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) Query.setParameter(QueryParameter<P> parameter, P argument, Class<P> type) Bind an argument to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theBindableTypeto use.Query.setParameter(QueryParameter<P> parameter, P argument, BindableType<P> type) Bind an argument to the query parameter represented by the givenQueryParameterusing the givenBindableType.Query.setParameter(QueryParameter<T> parameter, T argument) Bind an argument to the query parameter represented by the givenQueryParameter.<P> SelectionQuery<R>SelectionQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> SelectionQuery<R>SelectionQuery.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> SelectionQuery<R>SelectionQuery.setParameter(QueryParameter<T> parameter, T value) CommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) Bind multiple arguments to the query parameter represented by the givenQueryParameter.CommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.CommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, using the givenBindableType.CommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values) Bind multiple arguments to the query parameter represented by the givenQueryParameter.CommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.CommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, using the given theBindableType.<P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> NativeQuery<T>NativeQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) Query.setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments) Bind multiple arguments to the query parameter represented by the givenQueryParameter.Query.setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theBindableTypeto use.Query.setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theBindableType.Query.setParameterList(QueryParameter<P> parameter, P[] arguments) Bind multiple arguments to the query parameter represented by the givenQueryParameter.Query.setParameterList(QueryParameter<P> parameter, P[] arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to determine theBindableTypeto use.Query.setParameterList(QueryParameter<P> parameter, P[] arguments, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theBindableType.<P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SelectionQuery<R>SelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) Method parameters in org.hibernate.query with type arguments of type QueryParameterModifier and TypeMethodDescriptionvoidParameterMetadata.visitRegistrations(Consumer<? extends QueryParameter<?>> action) General purpose visitation using functional -
Uses of QueryParameter in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type QueryParameterModifier and TypeMethodDescription<P> SqmQueryImplementor<R>SqmQueryImplementor.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> SqmQueryImplementor<R>SqmQueryImplementor.setParameter(QueryParameter<T> parameter, T value) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SqmQueryImplementor<R>SqmQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.internal
Classes in org.hibernate.query.internal that implement QueryParameterModifier and TypeClassDescriptionclassQueryParameter impl for named-parameters in HQL, JPQL or Criteria queries.classQueryParameter impl for positional-parameters in HQL, JPQL or Criteria queries.Methods in org.hibernate.query.internal that return QueryParameterMethods in org.hibernate.query.internal with parameters of type QueryParameterModifier and TypeMethodDescriptionbooleanParameterMetadataImpl.containsReference(QueryParameter<?> parameter) <T> BindableType<T>ParameterMetadataImpl.getInferredParameterType(QueryParameter<T> parameter) Constructors in org.hibernate.query.internal with parameters of type QueryParameterModifierConstructorDescriptionprotectedQueryParameterBindingImpl(QueryParameter<T> queryParameter, SessionFactoryImplementor sessionFactory) Used byProcedureCallQueryParameterBindingImpl(QueryParameter<T> queryParameter, SessionFactoryImplementor sessionFactory, BindableType<T> bindType) Used by Query (SQM) and NativeQuery -
Uses of QueryParameter in org.hibernate.query.procedure
Subinterfaces of QueryParameter in org.hibernate.query.procedure -
Uses of QueryParameter in org.hibernate.query.spi
Subinterfaces of QueryParameter in org.hibernate.query.spiClasses in org.hibernate.query.spi that implement QueryParameterMethods in org.hibernate.query.spi that return QueryParameterMethods in org.hibernate.query.spi with parameters of type QueryParameterModifier and TypeMethodDescriptiondefault <P> QueryParameterBinding<P>QueryParameterBindings.getBinding(QueryParameter<P> parameter) Access to the binding via QueryParameter referenceAbstractCommonQueryContract.setParameter(QueryParameter<P> parameter, P value) AbstractCommonQueryContract.setParameter(QueryParameter<P> parameter, P value, Class<P> javaType) AbstractCommonQueryContract.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> QueryImplementor<R>AbstractQuery.setParameter(QueryParameter<P> parameter, P value) <P> QueryImplementor<R>AbstractQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> javaTypeClass) <P> QueryImplementor<R>AbstractQuery.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> SelectionQuery<R>AbstractSelectionQuery.setParameter(QueryParameter<P> parameter, P value) <P> SelectionQuery<R>AbstractSelectionQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> javaType) <P> SelectionQuery<R>AbstractSelectionQuery.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> QueryImplementor<R>QueryImplementor.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> QueryImplementor<R>QueryImplementor.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> QueryImplementor<R>QueryImplementor.setParameter(QueryParameter<T> parameter, T value) <P> SqmQuerySqmQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> SqmQuerySqmQuery.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> SqmQuerySqmQuery.setParameter(QueryParameter<T> parameter, T value) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) AbstractCommonQueryContract.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaTypeClass) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaTypeClass) <P> QueryImplementor<R>AbstractQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SelectionQuery<R>AbstractSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> QueryImplementor<R>QueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SqmQuerySqmQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) Method parameters in org.hibernate.query.spi with type arguments of type QueryParameterModifier and TypeMethodDescriptiondefault voidParameterMetadataImplementor.visitRegistrations(Consumer<? extends QueryParameter<?>> action) -
Uses of QueryParameter in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type QueryParameterModifier and TypeMethodDescription<P> NativeQueryImplementor<R>NativeQueryImpl.setParameter(QueryParameter<P> parameter, P value) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameter(QueryParameter<P> parameter, P value, Class<P> javaTypeClass) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaTypeClass) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaTypeClass) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi with parameters of type QueryParameterModifier and TypeMethodDescription<P> NativeQueryImplementor<R>NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val, Class<P> type) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type QueryParameterModifier and TypeMethodDescription<P> SqmSelectionQuery<R>SqmSelectionQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) <T> SqmSelectionQuery<R>SqmSelectionQuery.setParameter(QueryParameter<T> parameter, T value) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SqmSelectionQuery<R>SqmSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type QueryParameterModifier and TypeMethodDescription<P> SqmQueryImplementor<R>QuerySqmImpl.setParameter(QueryParameter<P> parameter, P value) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameter(QueryParameter<P> parameter, P value, Class<P> javaType) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameter(QueryParameter<P> parameter, P value) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameter(QueryParameter<P> parameter, P value, Class<P> javaType) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameter(QueryParameter<P> parameter, P value, BindableType<P> type) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, P[] values) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type QueryParameterModifier and TypeMethodDescriptionDelegatingSqmSelectionQueryImplementor.setParameter(QueryParameter<P> parameter, P value, Class<P> type) DelegatingSqmSelectionQueryImplementor.setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) DelegatingSqmSelectionQueryImplementor.setParameter(QueryParameter<T> parameter, T value) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) DelegatingSqmSelectionQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) -
Uses of QueryParameter in org.hibernate.query.sqm.tree.expression
Classes in org.hibernate.query.sqm.tree.expression that implement QueryParameterModifier and TypeClassDescriptionclassJpaParameterExpressioncreated via JPACriteriaBuilder.classIt is a JpaCriteriaParameter created from a value when ValueHandlingMode is equal to BIND