Class AbstractQuery<R>
- java.lang.Object
-
- org.hibernate.query.spi.AbstractCommonQueryContract
-
- org.hibernate.query.spi.AbstractSelectionQuery<R>
-
- org.hibernate.query.spi.AbstractQuery<R>
-
- All Implemented Interfaces:
jakarta.persistence.Query,jakarta.persistence.TypedQuery<R>,CommonQueryContract,MutationQuery,Query<R>,SelectionQuery<R>,DomainQueryExecutionContext,QueryImplementor<R>
- Direct Known Subclasses:
NativeQueryImpl,ProcedureCallImpl
public abstract class AbstractQuery<R> extends AbstractSelectionQuery<R> implements QueryImplementor<R>
-
-
Field Summary
Fields Modifier and Type Field Description protected static EntityManagerMessageLoggerlog-
Fields inherited from class org.hibernate.query.spi.AbstractSelectionQuery
CRITERIA_HQL_STRING
-
-
Constructor Summary
Constructors Constructor Description AbstractQuery(SharedSessionContractImplementor session)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description QueryImplementor<R>addQueryHint(String hint)Add a database query hint to the SQL query.protected voidapplyOptions(NamedQueryMemento memento)protected voidcollectHints(Map<String,Object> hints)protected abstract intdoExecuteUpdate()intexecuteUpdate()Execute an insert, update, or delete statement, and return the number of affected entities.StringgetComment()Get the comment that has been set for this query, if any.intgetFirstResult()The first row position to return from the query results.jakarta.persistence.FlushModeTypegetFlushMode()The JPAFlushModeTypein effect for this query.jakarta.persistence.LockModeTypegetLockMode()LockOptionsgetLockOptions()The LockOptions currently in effect for the queryintgetMaxResults()The max number of rows requested for the query resultsSet<jakarta.persistence.Parameter<?>>getParameters()MutableQueryOptionsgetQueryOptions()Get the execution options for thisQuery.Set<String>getSupportedHints()booleanisCacheable()Should the results of the query be stored in the second level cache?protected voidprepareForExecution()protected booleanresolveJdbcParameterTypeIfNecessary()QueryImplementor<R>setCacheable(boolean cacheable)Enable/disable second level query (result) caching for this query.QueryImplementor<R>setCacheMode(CacheMode cacheMode)Set the current CacheMode in effect for this query.QueryImplementor<R>setCacheRegion(String cacheRegion)Set the name of the cache region where query results should be cached (assumingSelectionQuery.isCacheable()).QueryImplementor<R>setComment(String comment)Set a comment for this query.QueryImplementor<R>setFetchSize(int fetchSize)Sets a JDBC fetch size hint for the query.QueryImplementor<R>setFirstResult(int startPosition)Set the first row position to return from the query results.QueryImplementor<R>setFlushMode(jakarta.persistence.FlushModeType flushModeType)Set theFlushModein to use for this query.QueryImplementor<R>setHibernateFlushMode(FlushMode flushMode)Set the currentFlushModein effect for this query.QueryImplementor<R>setHint(String hintName, Object value)Apply hints to the query.QueryImplementor<R>setLockMode(jakarta.persistence.LockModeType lockModeType)Specify the root LockModeType for the queryQueryImplementor<R>setLockMode(String alias, LockMode lockMode)Set theLockModeto use for particular alias defined in theFROMclause of the query.QueryImplementor<R>setLockOptions(LockOptions lockOptions)Set the lock options for the query.QueryImplementor<R>setMaxResults(int maxResult)Set the max number of rows requested for the query results.voidsetOptionalEntityName(String entityName)voidsetOptionalId(Serializable id)voidsetOptionalObject(Object optionalObject)QueryImplementor<R>setParameter(int position, Object value)Bind the given argument to an ordinal query parameter.QueryImplementor<R>setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantto an ordinal query parameter using just the portion indicated by the givenTemporalType.QueryImplementor<R>setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)Queryoverride<P> QueryImplementor<R>setParameter(int position, P value, Class<P> javaTypeClass)Bind the given argument to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> QueryImplementor<R>setParameter(int position, P value, BindableType<P> type)Bind the given argument to an ordinal query parameter using the givenBindableType.QueryImplementor<R>setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)Queryoverride<P> QueryImplementor<R>setParameter(jakarta.persistence.Parameter<P> parameter, P value)QueryoverrideQueryImplementor<R>setParameter(String name, Object value)Bind the given argument to a named query parameter.QueryImplementor<R>setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantto the named query parameter using just the portion indicated by the givenTemporalType.QueryImplementor<R>setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)Queryoverride<P> QueryImplementor<R>setParameter(String name, P value, Class<P> javaTypeClass)Bind the given argument to a named query parameter using the givenClassreference to attempt to infer theBindableType.<P> QueryImplementor<R>setParameter(String name, P value, BindableType<P> type)Bind the given argument to a named query parameter using the givenBindableType.<P> QueryImplementor<R>setParameter(QueryParameter<P> parameter, P value)Bind an argument to the query parameter represented by the givenQueryParameter.<P> QueryImplementor<R>setParameter(QueryParameter<P> parameter, P value, Class<P> javaTypeClass)Bind an argument to the query parameter represented by the givenQueryParameter, using the givenClassreference to attempt to infer theBindableTypeto use.<P> QueryImplementor<R>setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)Bind an argument to the query parameter represented by the givenQueryParameter, using the givenBindableType.QueryImplementor<R>setParameterList(int position, Object[] values)Bind multiple arguments to an ordinal query parameter.QueryImplementor<R>setParameterList(int position, Collection values)Bind multiple arguments to an ordinal query parameter.<P> QueryImplementor<R>setParameterList(int position, Collection<? extends P> values, Class<P> javaTypeClass)Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> QueryImplementor<R>setParameterList(int position, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.<P> QueryImplementor<R>setParameterList(int position, P[] values, Class<P> javaTypeClass)Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> QueryImplementor<R>setParameterList(int position, P[] values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.QueryImplementor<R>setParameterList(String name, Object[] values)Bind multiple arguments to a named query parameter.QueryImplementor<R>setParameterList(String name, Collection values)Bind multiple arguments to a named query parameter.<P> QueryImplementor<R>setParameterList(String name, Collection<? extends P> values, Class<P> javaTypeClass)Bind multiple arguments to a named query parameter using the givenClassreference to attempt to infer theBindableTypeIf unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameterList(String, Collection).<P> QueryImplementor<R>setParameterList(String name, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> QueryImplementor<R>setParameterList(String name, P[] values, Class<P> javaTypeClass)Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableTypeto use.<P> QueryImplementor<R>setParameterList(String name, P[] values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> QueryImplementor<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> QueryImplementor<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaTypeClass)Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.<P> QueryImplementor<R>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> QueryImplementor<R>setParameterList(QueryParameter<P> parameter, P[] values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> QueryImplementor<R>setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaTypeClass)Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.<P> QueryImplementor<R>setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)Bind multiple arguments to the query parameter represented by the givenQueryParameter, using the given theBindableType.QueryImplementor<R>setProperties(Object bean)Bind the property values of the given bean to named parameters of the query, matching property names with parameter names and mapping property types to Hibernate types using heuristics.QueryImplementor<R>setProperties(Map map)Bind the values of the givenMapto named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.QueryImplementor<R>setReadOnly(boolean readOnly)Set the read-only/modifiable mode for entities and proxies loaded by this Query.QueryImplementor<R>setResultListTransformer(ResultListTransformer<R> transformer)Set aResultListTransformerQueryImplementor<R>setTimeout(int timeout)Set the query timeout in seconds.<T> QueryImplementor<T>setTupleTransformer(TupleTransformer<T> transformer)Set aTupleTransformer-
Methods inherited from class org.hibernate.query.spi.AbstractSelectionQuery
afterQuery, applyOptions, beforeQuery, buildTupleMetadata, checkQueryReturnType, doList, doScroll, getCacheMode, getCacheRegion, getCallback, getFetchSize, getQueryString, getSessionFactory, getSingleResult, getSingleResultOrNull, hasAppliedGraph, hasLimit, isReadOnly, list, requiresTxn, resetCallback, scroll, scroll, setAliasSpecificLockMode, setFollowOnLocking, setHibernateLockMode, stream, uniqueElement, uniqueResult, uniqueResultOptional, verifyResultType, visitQueryReturnType
-
Methods inherited from class org.hibernate.query.spi.AbstractCommonQueryContract
applyAdditionalPossibleHints, applyAliasSpecificLockModeHint, applyCacheableHint, applyCacheModeHint, applyCacheRegionHint, applyCommentHint, applyEntityGraphHint, applyFetchSizeHint, applyFirstResult, applyFlushModeHint, applyFollowOnLockingHint, applyGraph, applyGraph, applyHibernateLockMode, applyHint, applyJpaCacheRetrieveModeHint, applyJpaCacheStoreModeHint, applyJpaFlushMode, applyLockModeHint, applyLockModeType, applyLockTimeoutHint, applyLockTimeoutHint, applyMaxResults, applyResultListTransformer, applySelectionHint, applySynchronizeSpacesHint, applyTimeoutHint, applyTupleTransformer, determineType, getHibernateFlushMode, getHints, getIntegerLiteral, getJpaFlushMode, getMaxRows, getParameter, getParameter, getParameter, getParameter, getParameterMetadata, getParameterValue, getParameterValue, getParameterValue, getQueryParameterBindings, getSession, getTimeout, isBound, locateBinding, locateBinding, locateBinding, locateBinding, putIfNotNull, putIfNotNull
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.query.CommonQueryContract
getHibernateFlushMode, getTimeout
-
Methods inherited from interface org.hibernate.query.spi.DomainQueryExecutionContext
getQueryParameterBindings, getSession
-
Methods inherited from interface jakarta.persistence.Query
getHints, getParameter, getParameter, getParameter, getParameter, getParameterValue, getParameterValue, getParameterValue, isBound, unwrap
-
Methods inherited from interface org.hibernate.query.Query
applyFetchGraph, applyGraph, applyLoadGraph, getParameterMetadata, getQueryString, getResultList, getResultStream, getSingleResult, list, stream, uniqueResult, uniqueResultOptional
-
Methods inherited from interface org.hibernate.query.spi.QueryImplementor
getParameterBindings, getSession, scroll, scroll, setResultTransformer
-
Methods inherited from interface org.hibernate.query.SelectionQuery
getCacheMode, getCacheRegion, getFetchSize, getSingleResultOrNull, isReadOnly, setAliasSpecificLockMode, setFollowOnLocking, setHibernateLockMode
-
-
-
-
Field Detail
-
log
protected static final EntityManagerMessageLogger log
-
-
Constructor Detail
-
AbstractQuery
public AbstractQuery(SharedSessionContractImplementor session)
-
-
Method Detail
-
applyOptions
protected void applyOptions(NamedQueryMemento memento)
- Overrides:
applyOptionsin classAbstractSelectionQuery<R>
-
setHint
public QueryImplementor<R> setHint(String hintName, Object value)
Description copied from interface:CommonQueryContractApply hints to the query.- Specified by:
setHintin interfaceCommonQueryContract- Specified by:
setHintin interfacejakarta.persistence.Query- Specified by:
setHintin interfaceQuery<R>- Specified by:
setHintin interfaceSelectionQuery<R>- Specified by:
setHintin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setHintin classAbstractSelectionQuery<R>
-
getQueryOptions
public MutableQueryOptions getQueryOptions()
Description copied from interface:QueryGet the execution options for thisQuery. Many of the setters of this object update the state of the returnedQueryOptions. This is useful because it gives access to s primitive value in its (nullable) wrapper form, rather than the primitive form as required by JPA. This allows us to distinguish whether a value has been explicitly set by the client.- Specified by:
getQueryOptionsin interfaceDomainQueryExecutionContext- Specified by:
getQueryOptionsin interfaceQuery<R>- Overrides:
getQueryOptionsin classAbstractCommonQueryContract- Returns:
- Return the encapsulation of this query's options.
-
getMaxResults
public int getMaxResults()
Description copied from interface:SelectionQueryThe max number of rows requested for the query results- Specified by:
getMaxResultsin interfacejakarta.persistence.Query- Specified by:
getMaxResultsin interfaceSelectionQuery<R>- Overrides:
getMaxResultsin classAbstractCommonQueryContract
-
setMaxResults
public QueryImplementor<R> setMaxResults(int maxResult)
Description copied from interface:SelectionQuerySet the max number of rows requested for the query results. Applied to the SQL query- Specified by:
setMaxResultsin interfacejakarta.persistence.Query- Specified by:
setMaxResultsin interfaceQuery<R>- Specified by:
setMaxResultsin interfaceSelectionQuery<R>- Specified by:
setMaxResultsin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setMaxResultsin classAbstractSelectionQuery<R>
-
getFirstResult
public int getFirstResult()
Description copied from interface:SelectionQueryThe first row position to return from the query results. Applied to the SQL query- Specified by:
getFirstResultin interfacejakarta.persistence.Query- Specified by:
getFirstResultin interfaceSelectionQuery<R>- Overrides:
getFirstResultin classAbstractCommonQueryContract
-
setFirstResult
public QueryImplementor<R> setFirstResult(int startPosition)
Description copied from interface:SelectionQuerySet the first row position to return from the query results. Applied to the SQL query- Specified by:
setFirstResultin interfacejakarta.persistence.Query- Specified by:
setFirstResultin interfaceQuery<R>- Specified by:
setFirstResultin interfaceSelectionQuery<R>- Specified by:
setFirstResultin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setFirstResultin classAbstractSelectionQuery<R>
-
setTupleTransformer
public <T> QueryImplementor<T> setTupleTransformer(TupleTransformer<T> transformer)
Description copied from interface:QuerySet aTupleTransformer- Specified by:
setTupleTransformerin interfaceQuery<R>- Specified by:
setTupleTransformerin interfaceQueryImplementor<R>
-
setResultListTransformer
public QueryImplementor<R> setResultListTransformer(ResultListTransformer<R> transformer)
Description copied from interface:QuerySet aResultListTransformer- Specified by:
setResultListTransformerin interfaceQuery<R>- Specified by:
setResultListTransformerin interfaceQueryImplementor<R>
-
setHibernateFlushMode
public QueryImplementor<R> setHibernateFlushMode(FlushMode flushMode)
Description copied from interface:CommonQueryContractSet the currentFlushModein effect for this query.- Specified by:
setHibernateFlushModein interfaceCommonQueryContract- Specified by:
setHibernateFlushModein interfaceMutationQuery- Specified by:
setHibernateFlushModein interfaceQuery<R>- Specified by:
setHibernateFlushModein interfaceSelectionQuery<R>- Overrides:
setHibernateFlushModein classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.getHibernateFlushMode(),Session.getHibernateFlushMode()
-
getFlushMode
public jakarta.persistence.FlushModeType getFlushMode()
Description copied from interface:CommonQueryContractThe JPAFlushModeTypein effect for this query. By default, the query inherits theFlushModeof theSessionfrom which it originates.- Specified by:
getFlushModein interfaceCommonQueryContract- Specified by:
getFlushModein interfacejakarta.persistence.Query- Overrides:
getFlushModein classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.getHibernateFlushMode(),Session.getHibernateFlushMode()
-
setFlushMode
public QueryImplementor<R> setFlushMode(jakarta.persistence.FlushModeType flushModeType)
Description copied from interface:CommonQueryContractSet theFlushModein to use for this query.- Specified by:
setFlushModein interfaceCommonQueryContract- Specified by:
setFlushModein interfacejakarta.persistence.Query- Specified by:
setFlushModein interfaceQuery<R>- Specified by:
setFlushModein interfaceSelectionQuery<R>- Specified by:
setFlushModein interfacejakarta.persistence.TypedQuery<R>- Overrides:
setFlushModein classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.getHibernateFlushMode(),Session.getHibernateFlushMode()
-
setCacheMode
public QueryImplementor<R> setCacheMode(CacheMode cacheMode)
Description copied from interface:SelectionQuerySet the current CacheMode in effect for this query.- Specified by:
setCacheModein interfaceQuery<R>- Specified by:
setCacheModein interfaceSelectionQuery<R>- Overrides:
setCacheModein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.getCacheMode(),Session.setCacheMode(org.hibernate.CacheMode)
-
isCacheable
public boolean isCacheable()
Description copied from interface:SelectionQueryShould the results of the query be stored in the second level cache? This is different than second level caching of any returned entities and collections, which is controlled bySelectionQuery.getCacheMode(). NOTE: the query being "eligible" for caching does not necessarily mean its results will be cached. Second level query caching still has to be enabled on theSessionFactoryfor this to happen. Usually that is controlled by thehibernate.cache.use_query_cacheconfiguration setting.- Specified by:
isCacheablein interfaceSelectionQuery<R>- Overrides:
isCacheablein classAbstractSelectionQuery<R>- See Also:
AvailableSettings.USE_QUERY_CACHE
-
setCacheable
public QueryImplementor<R> setCacheable(boolean cacheable)
Description copied from interface:SelectionQueryEnable/disable second level query (result) caching for this query.- Specified by:
setCacheablein interfaceQuery<R>- Specified by:
setCacheablein interfaceSelectionQuery<R>- Overrides:
setCacheablein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.isCacheable()
-
setCacheRegion
public QueryImplementor<R> setCacheRegion(String cacheRegion)
Description copied from interface:SelectionQuerySet the name of the cache region where query results should be cached (assumingSelectionQuery.isCacheable()).nullindicates to use the default region.- Specified by:
setCacheRegionin interfaceQuery<R>- Specified by:
setCacheRegionin interfaceSelectionQuery<R>- Overrides:
setCacheRegionin classAbstractSelectionQuery<R>- See Also:
SelectionQuery.getCacheRegion()
-
setTimeout
public QueryImplementor<R> setTimeout(int timeout)
Description copied from interface:CommonQueryContractSet the query timeout in seconds.Any value set here is eventually passed directly along to the JDBC statement, which expressly disallows negative values. So negative values should be avoided as a general rule.
A value of zero indicates no timeout.
- Specified by:
setTimeoutin interfaceCommonQueryContract- Specified by:
setTimeoutin interfaceQuery<R>- Specified by:
setTimeoutin interfaceSelectionQuery<R>- Overrides:
setTimeoutin classAbstractSelectionQuery<R>- Parameters:
timeout- the timeout in seconds- Returns:
this, for method chaining- See Also:
CommonQueryContract.getTimeout()
-
setFetchSize
public QueryImplementor<R> setFetchSize(int fetchSize)
Description copied from interface:SelectionQuerySets a JDBC fetch size hint for the query.- Specified by:
setFetchSizein interfaceQuery<R>- Specified by:
setFetchSizein interfaceSelectionQuery<R>- Overrides:
setFetchSizein classAbstractSelectionQuery<R>- Parameters:
fetchSize- the fetch size hint- Returns:
this, for method chaining- See Also:
SelectionQuery.getFetchSize()
-
setReadOnly
public QueryImplementor<R> setReadOnly(boolean readOnly)
Description copied from interface:SelectionQuerySet the read-only/modifiable mode for entities and proxies loaded by this Query. This setting overrides the default setting for the persistence context.- Specified by:
setReadOnlyin interfaceQuery<R>- Specified by:
setReadOnlyin interfaceSelectionQuery<R>- Overrides:
setReadOnlyin classAbstractSelectionQuery<R>- Parameters:
readOnly-trueindicates that entities and proxies loaded by the query are to be put in read-only mode;falseindicates that entities and proxies loaded by the query will be put in modifiable mode- Returns:
this, for method chaining- See Also:
To set the default read-only/modifiable setting used for entities and proxies that are loaded into the session:,PersistenceContext.setDefaultReadOnly(boolean),Read-only entities are not dirty-checked and snapshots of persistent state are not maintained. Read-only entities can be modified, but changes are not persisted. When a proxy is initialized, the loaded entity will have the same read-only/modifiable setting as the uninitialized proxy has, regardless of the session's current setting. The read-only/modifiable setting has no impact on entities/proxies returned by the query that existed in the session beforeQuery the query was executed.
-
getLockOptions
public LockOptions getLockOptions()
Description copied from interface:SelectionQueryThe LockOptions currently in effect for the query- Specified by:
getLockOptionsin interfaceQuery<R>- Specified by:
getLockOptionsin interfaceSelectionQuery<R>- Overrides:
getLockOptionsin classAbstractSelectionQuery<R>- Returns:
- The LockOptions
- See Also:
LockOptions
-
getLockMode
public jakarta.persistence.LockModeType getLockMode()
- Specified by:
getLockModein interfacejakarta.persistence.Query
-
setLockOptions
public QueryImplementor<R> setLockOptions(LockOptions lockOptions)
Description copied from interface:QuerySet the lock options for the query.Only the following options are taken into consideration:
For alias-specific locking, useQuery.setLockMode(String, LockMode).- Specified by:
setLockOptionsin interfaceQuery<R>- Parameters:
lockOptions- The lock options to apply to the query.- Returns:
this, for method chaining- See Also:
Query.getLockOptions()
-
setLockMode
public QueryImplementor<R> setLockMode(String alias, LockMode lockMode)
Description copied from interface:QuerySet theLockModeto use for particular alias defined in theFROMclause of the query.The alias-specific lock modes specified here are added to the
LockOptions.The effect of alias-specific locking is quite dependent on the driver and database. For maximum portability, the given lock mode should be
LockMode.PESSIMISTIC_WRITE.- Specified by:
setLockModein interfaceQuery<R>- Parameters:
alias- a query alias, or"this"for a collection filterlockMode- The lock mode to apply.- Returns:
this, for method chaining- See Also:
Query.getLockOptions()
-
setLockMode
public QueryImplementor<R> setLockMode(jakarta.persistence.LockModeType lockModeType)
Description copied from class:AbstractSelectionQuerySpecify the root LockModeType for the query- Specified by:
setLockModein interfacejakarta.persistence.Query- Specified by:
setLockModein interfaceQuery<R>- Specified by:
setLockModein interfaceSelectionQuery<R>- Specified by:
setLockModein interfacejakarta.persistence.TypedQuery<R>- Overrides:
setLockModein classAbstractSelectionQuery<R>- See Also:
AbstractSelectionQuery.setHibernateLockMode(org.hibernate.LockMode)
-
getComment
public String getComment()
Description copied from interface:CommonQueryContractGet the comment that has been set for this query, if any.- Specified by:
getCommentin interfaceCommonQueryContract- Specified by:
getCommentin interfaceQuery<R>- Overrides:
getCommentin classAbstractCommonQueryContract- Returns:
- The comment.
-
setComment
public QueryImplementor<R> setComment(String comment)
Description copied from interface:CommonQueryContractSet a comment for this query.- Specified by:
setCommentin interfaceCommonQueryContract- Specified by:
setCommentin interfaceQuery<R>- Overrides:
setCommentin classAbstractCommonQueryContract- Parameters:
comment- The human-readable comment- Returns:
this, for method chaining- See Also:
Query.setComment(String)
-
addQueryHint
public QueryImplementor<R> addQueryHint(String hint)
Description copied from interface:QueryAdd a database query hint to the SQL query.A database hint is a completely different concept to a JPA hint specified using
QueryHintorQuery.getHints(). These are hints to the JPA provider.Multiple query hints may be specified. The operation
Dialect.getQueryHintString(String, List)determines how the hint is actually added to the SQL query.- Specified by:
addQueryHintin interfaceQuery<R>- Parameters:
hint- The database specific query hint to add.
-
collectHints
protected void collectHints(Map<String,Object> hints)
- Overrides:
collectHintsin classAbstractSelectionQuery<R>
-
resolveJdbcParameterTypeIfNecessary
protected boolean resolveJdbcParameterTypeIfNecessary()
- Specified by:
resolveJdbcParameterTypeIfNecessaryin classAbstractCommonQueryContract
-
getParameters
public Set<jakarta.persistence.Parameter<?>> getParameters()
- Specified by:
getParametersin interfacejakarta.persistence.Query- Overrides:
getParametersin classAbstractCommonQueryContract
-
setParameter
public QueryImplementor<R> setParameter(String name, Object value)
Description copied from interface:CommonQueryContractBind the given argument to a named query parameter.If the type of the parameter cannot be inferred from the context in which it occurs, use one of the forms which accepts a "type".
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.setParameter(String, Object, Class),CommonQueryContract.setParameter(String, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(String name, P value, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind the given argument to a named query parameter using the givenClassreference to attempt to infer theBindableType. If unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameter(String, Object).- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameter(String, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(String name, P value, BindableType<P> type)
Description copied from interface:CommonQueryContractBind the given argument to a named query parameter using the givenBindableType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
BindableType.parameterType(java.lang.Class<T>)
-
setParameter
public QueryImplementor<R> setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:CommonQueryContractBind anInstantto the named query parameter using just the portion indicated by the givenTemporalType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>
-
setParameter
public QueryImplementor<R> setParameter(int position, Object value)
Description copied from interface:CommonQueryContractBind the given argument to an ordinal query parameter.If the type of the parameter cannot be inferred from the context in which it occurs, use one of the forms which accepts a "type".
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.setParameter(int, Object, Class),CommonQueryContract.setParameter(int, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(int position, P value, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind the given argument to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType. If unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameter(int, Object).- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameter(int, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(int position, P value, BindableType<P> type)
Description copied from interface:CommonQueryContractBind the given argument to an ordinal query parameter using the givenBindableType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
BindableType.parameterType(java.lang.Class<T>)
-
setParameter
public QueryImplementor<R> setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:CommonQueryContractBind anInstantto an ordinal query parameter using just the portion indicated by the givenTemporalType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>
-
setParameter
public <P> QueryImplementor<R> setParameter(QueryParameter<P> parameter, P value)
Description copied from interface:CommonQueryContractBind an argument to the query parameter represented by the givenQueryParameter.If the type of the parameter cannot be inferred from the context in which it occurs, use one of the forms which accepts a "type".
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- Parameters:
parameter- the query parameter mementovalue- the argument, which might be null- Returns:
this, for method chaining- See Also:
CommonQueryContract.setParameter(QueryParameter, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(QueryParameter<P> parameter, P value, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind an argument to the query parameter represented by the givenQueryParameter, using the givenClassreference to attempt to infer theBindableTypeto use. If unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameter(QueryParameter, Object).- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- Parameters:
parameter- the query parameter mementovalue- the argument, which might be nulljavaTypeClass- aBindableTyperepresenting the type of the parameter- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameter(QueryParameter, Object, BindableType)
-
setParameter
public <P> QueryImplementor<R> setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)
Description copied from interface:CommonQueryContractBind an argument to the query parameter represented by the givenQueryParameter, using the givenBindableType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- Parameters:
parameter- the query parameter mementovalue- the argument, which might be nulltype- aBindableTyperepresenting the type of the parameter- Returns:
this, for method chaining
-
setParameter
public <P> QueryImplementor<R> setParameter(jakarta.persistence.Parameter<P> parameter, P value)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(Parameter, Object)
-
setParameterList
public QueryImplementor<R> setParameterList(String name, Collection values)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter. The "type mapping" for the binding is inferred from the type of the first collection element.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
CommonQueryContract.setParameterList(java.lang.String, java.util.Collection, BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(String name, Collection<? extends P> values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter using the givenClassreference to attempt to infer theBindableTypeIf unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameterList(String, Collection).- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(java.lang.String, java.util.Collection, BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter using the givenBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public QueryImplementor<R> setParameterList(String name, Object[] values)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter. The "type mapping" for the binding is inferred from the type of the first collection element- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(String name, P[] values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableTypeto use. If unable to determine an appropriateBindableType,CommonQueryContract.setParameterList(String, Collection)is used- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(java.lang.String, Object[], BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(String name, P[] values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to a named query parameter using the givenBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public QueryImplementor<R> setParameterList(int position, Collection values)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter. The "type mapping" for the binding is inferred from the type of the first collection element- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(int position, Collection<? extends P> values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType. If unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameterList(String, Collection).- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(int, Collection, BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter using the givenBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public QueryImplementor<R> setParameterList(int position, Object[] values)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter. The "type mapping" for the binding is inferred from the type of the first collection element- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(int position, P[] values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType. If unable to infer an appropriateBindableType, fall back toCommonQueryContract.setParameterList(String, Collection).- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(int, Object[], BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(int position, P[] values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to an ordinal query parameter using the givenBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameter.The type of the parameter is inferred from the context in which it occurs, and from the type of the first given argument.
- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Parameters:
parameter- the parameter mementovalues- a collection of arguments- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use. If unable to infer an appropriateBindableType, fall back to usingCommonQueryContract.setParameterList(String, Collection).- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(QueryParameter, java.util.Collection, BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameter, using the givenBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameter.The type of the parameter is inferred between the context in which it occurs, the type associated with the
QueryParameterand the type of the first given argument.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Parameters:
parameter- the parameter mementovalues- a collection of arguments- Returns:
this, for method chaining
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaTypeClass)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use. If unable to infer an appropriateBindableType, fall back to usingCommonQueryContract.setParameterList(String, Collection).- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining- See Also:
BindableType.parameterType(Class),CommonQueryContract.setParameterList(QueryParameter, Object[], BindableType)
-
setParameterList
public <P> QueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
Description copied from interface:CommonQueryContractBind multiple arguments to the query parameter represented by the givenQueryParameter, using the given theBindableType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceMutationQuery- Specified by:
setParameterListin interfaceQuery<R>- Specified by:
setParameterListin interfaceQueryImplementor<R>- Specified by:
setParameterListin interfaceSelectionQuery<R>- Overrides:
setParameterListin classAbstractSelectionQuery<R>- Returns:
this, for method chaining
-
setParameter
public QueryImplementor<R> setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(Parameter, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(Parameter, Date, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(String, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(String, Date, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(int, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfacejakarta.persistence.Query- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfacejakarta.persistence.TypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(int, Date, TemporalType)
-
setProperties
public QueryImplementor<R> setProperties(Object bean)
Description copied from interface:CommonQueryContractBind the property values of the given bean to named parameters of the query, matching property names with parameter names and mapping property types to Hibernate types using heuristics.- Specified by:
setPropertiesin interfaceCommonQueryContract- Specified by:
setPropertiesin interfaceMutationQuery- Specified by:
setPropertiesin interfaceQuery<R>- Specified by:
setPropertiesin interfaceQueryImplementor<R>- Specified by:
setPropertiesin interfaceSelectionQuery<R>- Overrides:
setPropertiesin classAbstractSelectionQuery<R>- Parameters:
bean- any JavaBean or POJO- Returns:
this, for method chaining
-
setProperties
public QueryImplementor<R> setProperties(Map map)
Description copied from interface:CommonQueryContractBind the values of the givenMapto named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.- Specified by:
setPropertiesin interfaceCommonQueryContract- Specified by:
setPropertiesin interfaceMutationQuery- Specified by:
setPropertiesin interfaceQuery<R>- Specified by:
setPropertiesin interfaceQueryImplementor<R>- Specified by:
setPropertiesin interfaceSelectionQuery<R>- Overrides:
setPropertiesin classAbstractSelectionQuery<R>- Parameters:
map- aMapof names to arguments- Returns:
this, for method chaining
-
prepareForExecution
protected void prepareForExecution()
- Specified by:
prepareForExecutionin classAbstractSelectionQuery<R>
-
executeUpdate
public int executeUpdate() throws HibernateExceptionDescription copied from interface:QueryExecute an insert, update, or delete statement, and return the number of affected entities.For use with instances of
MutationQuerycreated usingQueryProducer.createMutationQuery(String),QueryProducer.createNamedMutationQuery(String),QueryProducer.createNativeMutationQuery(String),QueryProducer.createQuery(jakarta.persistence.criteria.CriteriaUpdate), orQueryProducer.createQuery(jakarta.persistence.criteria.CriteriaDelete).- Specified by:
executeUpdatein interfaceMutationQuery- Specified by:
executeUpdatein interfacejakarta.persistence.Query- Specified by:
executeUpdatein interfaceQuery<R>- Returns:
- the number of affected entity instances (may differ from the number of affected rows)
- Throws:
HibernateException- See Also:
QueryProducer.createMutationQuery(java.lang.String),QueryProducer.createMutationQuery(String),QueryProducer.createNamedMutationQuery(String),QueryProducer.createNativeMutationQuery(String),Query.executeUpdate(),QueryProducer.createMutationQuery(java.lang.String)
-
doExecuteUpdate
protected abstract int doExecuteUpdate()
-
setOptionalId
public void setOptionalId(Serializable id)
- Specified by:
setOptionalIdin interfaceQueryImplementor<R>
-
setOptionalEntityName
public void setOptionalEntityName(String entityName)
- Specified by:
setOptionalEntityNamein interfaceQueryImplementor<R>
-
setOptionalObject
public void setOptionalObject(Object optionalObject)
- Specified by:
setOptionalObjectin interfaceQueryImplementor<R>
-
-