Uses of Interface
org.hibernate.query.QueryParameter
-
Packages that use QueryParameter Package Description org.hibernate.engine.query.spi Defines support for query plans and stored metadata about queriesorg.hibernate.procedure org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi org.hibernate.query org.hibernate.query.hql.spi org.hibernate.query.internal org.hibernate.query.procedure org.hibernate.query.spi org.hibernate.query.sql.internal org.hibernate.query.sql.spi org.hibernate.query.sqm org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.expression -
-
Uses of QueryParameter in org.hibernate.engine.query.spi
Classes in org.hibernate.engine.query.spi that implement QueryParameter Modifier and Type Class Description classAbstractParameterDescriptor<T>NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQMclassNamedParameterDescriptor<T>Descriptor regarding a named parameter.classOrdinalParameterDescriptor<T>Descriptor regarding an ordinal parameter. -
Uses of QueryParameter in org.hibernate.procedure
Subinterfaces of QueryParameter in org.hibernate.procedure Modifier and Type Interface Description interfaceFunctionReturn<T>Describes 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 QueryParameter Modifier and Type Class Description classFunctionReturnImpl<T>classProcedureParameterImpl<T>Methods in org.hibernate.procedure.internal that return types with arguments of type QueryParameter Modifier and Type Method Description Set<? extends QueryParameter<?>>ProcedureParameterMetadataImpl. getRegistrations()Methods in org.hibernate.procedure.internal with parameters of type QueryParameter Modifier and Type Method Description booleanProcedureParameterMetadataImpl. containsReference(QueryParameter parameter)<P> ProcedureCallImplementor<R>ProcedureCallImpl. setParameter(QueryParameter<P> parameter, P value)<P> ProcedureCallImplementor<R>ProcedureCallImpl. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)Method parameters in org.hibernate.procedure.internal with type arguments of type QueryParameter Modifier and Type Method Description voidProcedureParameterMetadataImpl. visitRegistrations(Consumer<? extends QueryParameter<?>> action) -
Uses of QueryParameter in org.hibernate.procedure.spi
Subinterfaces of QueryParameter in org.hibernate.procedure.spi Modifier and Type Interface Description interfaceFunctionReturnImplementor<T>interfaceProcedureParameterImplementor<T>SPI extension for ProcedureParameter -
Uses of QueryParameter in org.hibernate.query
Methods in org.hibernate.query that return QueryParameter Modifier and Type Method Description QueryParameter<?>ParameterMetadata. findQueryParameter(int positionLabel)Find the QueryParameter registered under the given position-label, if one.QueryParameter<?>ParameterMetadata. findQueryParameter(String name)Find the QueryParameter registered under the given name, if one.QueryParameter<?>ParameterMetadata. getQueryParameter(int positionLabel)Get the QueryParameter reference registered here under the given position-label.QueryParameter<?>ParameterMetadata. getQueryParameter(String name)Get the QueryParameter reference registered here under the given name.<P> QueryParameter<P>ParameterMetadata. resolve(jakarta.persistence.Parameter<P> param)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 QueryParameter Modifier and Type Method Description Set<? extends QueryParameter<?>>ParameterMetadata. getRegistrations()Methods in org.hibernate.query with parameters of type QueryParameter Modifier and Type Method Description booleanParameterMetadata. containsReference(QueryParameter<?> parameter)Is this parameter reference registered in this collection?default <T> BindableType<T>ParameterMetadata. getInferredParameterType(QueryParameter<T> parameter)<P> CommonQueryContractCommonQueryContract. 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.<P> CommonQueryContractCommonQueryContract. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)Bind an argument to the query parameter represented by the givenQueryParameter, using the givenBindableType.<T> CommonQueryContractCommonQueryContract. 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)<P> Query<R>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.<P> Query<R>Query. setParameter(QueryParameter<P> parameter, P argument, BindableType<P> type)Bind an argument to the query parameter represented by the givenQueryParameterusing the givenBindableType.<T> Query<R>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)<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> CommonQueryContractCommonQueryContract. 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.<P> CommonQueryContractCommonQueryContract. 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.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> CommonQueryContractCommonQueryContract. 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.<P> CommonQueryContractCommonQueryContract. 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)<P> Query<R>Query. setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> Query<R>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.<P> Query<R>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.<P> Query<R>Query. setParameterList(QueryParameter<P> parameter, P[] arguments)Bind multiple arguments to the query parameter represented by the givenQueryParameter<P> Query<R>Query. setParameterList(QueryParameter<P> parameter, 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.<P> Query<R>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 QueryParameter Modifier and Type Method Description voidParameterMetadata. 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 QueryParameter Modifier and Type Method Description <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 QueryParameter Modifier and Type Class Description classAbstractQueryParameterImpl<T>QueryParameter implementation.classQueryParameterNamedImpl<T>QueryParameter impl for named-parameters in HQL, JPQL or Criteria queries.classQueryParameterPositionalImpl<T>QueryParameter impl for positional-parameters in HQL, JPQL or Criteria queries.Methods in org.hibernate.query.internal with parameters of type QueryParameter Modifier and Type Method Description booleanParameterMetadataImpl. containsReference(QueryParameter<?> parameter)<T> BindableType<T>ParameterMetadataImpl. getInferredParameterType(QueryParameter<T> parameter)Constructors in org.hibernate.query.internal with parameters of type QueryParameter Constructor Description QueryParameterBindingImpl(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 Modifier and Type Interface Description interfaceProcedureParameter<T>NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQM -
Uses of QueryParameter in org.hibernate.query.spi
Subinterfaces of QueryParameter in org.hibernate.query.spi Modifier and Type Interface Description interfaceQueryParameterImplementor<T>Classes in org.hibernate.query.spi that implement QueryParameter Modifier and Type Class Description classAbstractQueryParameter<T>Methods in org.hibernate.query.spi with parameters of type QueryParameter Modifier and Type Method Description default <P> QueryParameterBinding<P>QueryParameterBindings. getBinding(QueryParameter<P> parameter)Access to the binding via QueryParameter reference<P> CommonQueryContractAbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. 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)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. 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 QueryParameter Modifier and Type Method Description default 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 QueryParameter Modifier and Type Method Description <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 QueryParameter Modifier and Type Method Description <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 QueryParameter Modifier and Type Method Description <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 QueryParameter Modifier and Type Method Description <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.tree.expression
Classes in org.hibernate.query.sqm.tree.expression that implement QueryParameter Modifier and Type Class Description classJpaCriteriaParameter<T>JpaParameterExpressioncreated via JPACriteriaBuilder.classValueBindJpaCriteriaParameter<T>It is a JpaCriteriaParameter created from a value when ValueHandlingMode is equal to BIND
-