Uses of Interface
jakarta.persistence.Parameter
Packages that use Parameter
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
Jakarta Persistence Criteria API
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.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
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 Parameter in jakarta.persistence
Methods in jakarta.persistence that return ParameterModifier and TypeMethodDescriptionParameter<?>Query.getParameter(int position) Get the parameter object corresponding to the declared positional parameter with the given position.<T> Parameter<T>Query.getParameter(int position, Class<T> type) Get the parameter object corresponding to the declared positional parameter with the given position and type.Parameter<?>Query.getParameter(String name) Get the parameter object corresponding to the declared parameter of the given name.<T> Parameter<T>Query.getParameter(String name, Class<T> type) Get the parameter object corresponding to the declared parameter of the given name and type.Methods in jakarta.persistence that return types with arguments of type ParameterModifier and TypeMethodDescriptionQuery.getParameters()Get the parameter objects corresponding to the declared parameters of the query.Methods in jakarta.persistence with parameters of type ParameterModifier and TypeMethodDescription<T> TQuery.getParameterValue(Parameter<T> param) Return the input value bound to the parameter.booleanReturn a boolean indicating whether a value has been bound to the parameter.Query.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto aParameterobject.Query.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto aParameterobject.<T> QueryQuery.setParameter(Parameter<T> param, T value) Bind the value of aParameterobject.StoredProcedureQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto aParameterobject.StoredProcedureQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto aParameterobject.StoredProcedureQuery.setParameter(Parameter<T> param, T value) Bind the value of aParameterobject.TypedQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto aParameterobject.TypedQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto aParameterobject.<T> TypedQuery<X>TypedQuery.setParameter(Parameter<T> param, T value) Bind the value of aParameterobject. -
Uses of Parameter in jakarta.persistence.criteria
Subinterfaces of Parameter in jakarta.persistence.criteriaModifier and TypeInterfaceDescriptioninterfaceType of criteria query parameter expressions. -
Uses of Parameter in org.hibernate.engine.query.spi
Classes in org.hibernate.engine.query.spi that implement ParameterModifier and TypeClassDescriptionclassclassDescriptor regarding a named parameter.classDescriptor regarding an ordinal parameter. -
Uses of Parameter in org.hibernate.procedure
Subinterfaces of Parameter 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)Methods in org.hibernate.procedure with parameters of type ParameterModifier and TypeMethodDescriptionProcedureCall.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) ProcedureCall.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> ProcedureCallProcedureCall.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement ParameterMethods in org.hibernate.procedure.internal with parameters of type ParameterModifier and TypeMethodDescriptionProcedureCallImpl.setParameter(Parameter<Calendar> parameter, Calendar value, TemporalType temporalPrecision) ProcedureCallImpl.setParameter(Parameter<Date> parameter, Date value, TemporalType temporalPrecision) ProcedureCallImpl.setParameter(Parameter<P> parameter, P value) -
Uses of Parameter in org.hibernate.procedure.spi
Subinterfaces of Parameter in org.hibernate.procedure.spiModifier and TypeInterfaceDescriptioninterfaceinterfaceSPI extension for ProcedureParameterMethods in org.hibernate.procedure.spi with parameters of type ParameterModifier and TypeMethodDescriptionProcedureCallImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) ProcedureCallImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) ProcedureCallImplementor.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query
Subinterfaces of Parameter in org.hibernate.queryModifier and TypeInterfaceDescriptioninterfaceRepresents a parameter defined in the source (HQL/JPQL or criteria) query.Methods in org.hibernate.query with parameters of type ParameterModifier and TypeMethodDescription<P> QueryParameter<P>A deeper resolution attempt from a JPA parameter reference to Hibernate's contract.CommonQueryContract.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) CommonQueryContract.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) CommonQueryContract.setParameter(Parameter<T> param, T value) MutationQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) MutationQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> MutationQueryMutationQuery.setParameter(Parameter<T> param, T value) NativeQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) NativeQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> NativeQuery<T>NativeQuery.setParameter(Parameter<P> param, P value) Query.setParameter(Parameter<Calendar> parameter, Calendar argument, TemporalType temporalType) QueryoverrideQuery.setParameter(Parameter<Date> parameter, Date argument, TemporalType temporalType) QueryoverrideQuery.setParameter(Parameter<T> parameter, T argument) QueryoverrideSelectionQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) SelectionQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> SelectionQuery<R>SelectionQuery.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query.criteria
Subinterfaces of Parameter in org.hibernate.query.criteria -
Uses of Parameter in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type ParameterModifier and TypeMethodDescriptionSqmQueryImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) SqmQueryImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> SqmQueryImplementor<R>SqmQueryImplementor.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query.internal
Classes in org.hibernate.query.internal that implement ParameterModifier 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 with parameters of type Parameter -
Uses of Parameter in org.hibernate.query.procedure
Subinterfaces of Parameter in org.hibernate.query.procedure -
Uses of Parameter in org.hibernate.query.spi
Subinterfaces of Parameter in org.hibernate.query.spiClasses in org.hibernate.query.spi that implement ParameterMethods in org.hibernate.query.spi that return types with arguments of type ParameterModifier and TypeMethodDescriptionAbstractCommonQueryContract.getParameters()AbstractQuery.getParameters()Methods in org.hibernate.query.spi with parameters of type ParameterModifier and TypeMethodDescription<T> TAbstractCommonQueryContract.getParameterValue(Parameter<T> param) booleanprotected <P> QueryParameterBinding<P>AbstractCommonQueryContract.locateBinding(Parameter<P> parameter) <P> QueryParameterImplementor<P>AbstractCommonQueryContract.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) AbstractCommonQueryContract.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) AbstractCommonQueryContract.setParameter(Parameter<P> parameter, P value) AbstractQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) AbstractQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> QueryImplementor<R>AbstractQuery.setParameter(Parameter<P> parameter, P value) AbstractSelectionQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) AbstractSelectionQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> SelectionQuery<R>AbstractSelectionQuery.setParameter(Parameter<P> parameter, P value) QueryImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) QueryImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> QueryImplementor<R>QueryImplementor.setParameter(Parameter<T> param, T value) SqmQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) SqmQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> SqmQuerySqmQuery.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type ParameterModifier and TypeMethodDescriptionNativeQueryImpl.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) NativeQueryImpl.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> NativeQueryImplementor<R>NativeQueryImpl.setParameter(Parameter<P> parameter, P value) -
Uses of Parameter in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi with parameters of type ParameterModifier and TypeMethodDescriptionNativeQueryImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) NativeQueryImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> NativeQueryImplementor<R>NativeQueryImplementor.setParameter(Parameter<P> param, P value) -
Uses of Parameter in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type ParameterModifier and TypeMethodDescriptionSqmSelectionQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) SqmSelectionQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <T> SqmSelectionQuery<R>SqmSelectionQuery.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type ParameterModifier and TypeMethodDescriptionQuerySqmImpl.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) QuerySqmImpl.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> SqmQueryImplementor<R>QuerySqmImpl.setParameter(Parameter<P> parameter, P value) SqmSelectionQueryImpl.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) SqmSelectionQueryImpl.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) <P> SqmSelectionQuery<R>SqmSelectionQueryImpl.setParameter(Parameter<P> parameter, P value) -
Uses of Parameter in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type ParameterModifier and TypeMethodDescriptionDelegatingSqmSelectionQueryImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) DelegatingSqmSelectionQueryImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) DelegatingSqmSelectionQueryImplementor.setParameter(Parameter<T> param, T value) -
Uses of Parameter in org.hibernate.query.sqm.tree.expression
Subinterfaces of Parameter in org.hibernate.query.sqm.tree.expressionModifier and TypeInterfaceDescriptioninterfaceSqmParameter<T>Models a parameter expression declared in the query.Classes in org.hibernate.query.sqm.tree.expression that implement ParameterModifier and TypeClassDescriptionclassCommon support for SqmParameter implsclassJpaParameterExpressioncreated via JPACriteriaBuilder.classActs as the per-use wrapper for a JpaCriteriaParameter (CriteriaBuilder.parameter(java.lang.Class<T>)).classRepresents a named query parameter in the SQM tree.classModels a positional parameter expressionclassIt is a JpaCriteriaParameter created from a value when ValueHandlingMode is equal to BIND -
Uses of Parameter in org.hibernate.search.mapper.orm.search.query.impl
Methods in org.hibernate.search.mapper.orm.search.query.impl with parameters of type ParameterModifier and TypeMethodDescriptionprotected <P> QueryParameterBinding<P>HibernateOrmSearchQueryAdapter.locateBinding(Parameter<P> parameter)