Uses of Interface
org.hibernate.query.QueryParameter
-
Packages that use QueryParameter Package Description org.hibernate.engine.query.spi An SPI for dealing with parameters of native queries.org.hibernate.procedure Defines support for executing database stored procedures and functions and accessing their outputs.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 Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.hql.spi SPIs for HQL support.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.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.expression 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 QueryParameter Modifier and Type Class Description class
AbstractParameterDescriptor<T>
class
NamedParameterDescriptor<T>
Descriptor regarding a named parameter.class
OrdinalParameterDescriptor<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 interface
FunctionReturn<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 class
FunctionReturnImpl<T>
class
ProcedureParameterImpl<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 boolean
ProcedureParameterMetadataImpl. 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 void
ProcedureParameterMetadataImpl. 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 interface
FunctionReturnImplementor<T>
interface
ProcedureParameterImplementor<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(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 boolean
ParameterMetadata. containsReference(QueryParameter<?> parameter)
Is this parameter reference registered in this collection?default <T> BindableType<T>
ParameterMetadata. getInferredParameterType(QueryParameter<T> parameter)
<P> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
Bind an argument to the query parameter represented by the givenQueryParameter
, using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
Bind an argument to the query parameter represented by the givenQueryParameter
, using the givenBindableType
.<T> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<T> parameter, T value)
Bind an argument to the query parameter represented by the givenQueryParameter
.<P> MutationQuery
MutationQuery. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
<P> MutationQuery
MutationQuery. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
<T> MutationQuery
MutationQuery. 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 givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to use.<P> Query<R>
Query. setParameter(QueryParameter<P> parameter, P argument, BindableType<P> type)
Bind an argument to the query parameter represented by the givenQueryParameter
using 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> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
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
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
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> MutationQuery
MutationQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> MutationQuery
MutationQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> MutationQuery
MutationQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> MutationQuery
MutationQuery. setParameterList(QueryParameter<P> parameter, P[] values)
<P> MutationQuery
MutationQuery. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> MutationQuery
MutationQuery. 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 givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to 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 givenQueryParameter
using the givenClass
reference to attempt to determine theBindableType
to 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 void
ParameterMetadata. 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 class
QueryParameterNamedImpl<T>
QueryParameter impl for named-parameters in HQL, JPQL or Criteria queries.class
QueryParameterPositionalImpl<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 boolean
ParameterMetadataImpl. 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 byProcedureCall
QueryParameterBindingImpl(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 interface
ProcedureParameter<T>
-
Uses of QueryParameter in org.hibernate.query.spi
Subinterfaces of QueryParameter in org.hibernate.query.spi Modifier and Type Interface Description interface
QueryParameterImplementor<T>
Classes in org.hibernate.query.spi that implement QueryParameter Modifier and Type Class Description class
AbstractQueryParameter<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> CommonQueryContract
AbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)
<P> CommonQueryContract
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> SqmQuery
SqmQuery. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
<P> SqmQuery
SqmQuery. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
<T> SqmQuery
SqmQuery. setParameter(QueryParameter<T> parameter, T value)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> CommonQueryContract
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> SqmQuery
SqmQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> SqmQuery
SqmQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> SqmQuery
SqmQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> SqmQuery
SqmQuery. setParameterList(QueryParameter<P> parameter, P[] values)
<P> SqmQuery
SqmQuery. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> SqmQuery
SqmQuery. 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 void
ParameterMetadataImplementor. 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 class
JpaCriteriaParameter<T>
JpaParameterExpression
created via JPACriteriaBuilder
.class
ValueBindJpaCriteriaParameter<T>
It is a JpaCriteriaParameter created from a value when ValueHandlingMode is equal to BIND
-