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:
Query,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)QueryImplementor<R>disableFetchProfile(String profileName)Disable thefetch profilewith the given name in this session.protected abstract intdoExecuteUpdate()QueryImplementor<R>enableFetchProfile(String profileName)Enable thefetch profilefor this query.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.FlushModeTypegetFlushMode()The JPAFlushModeTypein effect for this query.KeyedResultList<R>getKeyedResultList(KeyedPage<R> keyedPage)Execute the query and return the results for the given page, using key-based pagination.LockModeTypegetLockMode()Get the rootLockModeTypefor the queryLockOptionsgetLockOptions()TheLockOptionscurrently in effect for the queryintgetMaxResults()The max number of rows requested for the query resultsSet<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 currentCacheModein 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>setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode)QueryImplementor<R>setCacheStoreMode(CacheStoreMode cacheStoreMode)QueryImplementor<R>setComment(String comment)Set a comment for this query.QueryImplementor<R>setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)Apply anEntityGraphto the 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(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)Set a hint.QueryImplementor<R>setLockMode(LockModeType lockModeType)Specify the root LockModeType for the queryQueryImplementor<R>setLockMode(String alias, LockMode lockMode)Specify aLockModeto apply to a specific alias defined in the queryQueryImplementor<R>setLockOptions(LockOptions lockOptions)Apply the given lock options to this 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)Query<R>setOrder(List<Order<? super R>> orders)If the result type of this query is an entity class, add one or more rules for ordering the query results.Query<R>setOrder(Order<? super R> order)If the result type of this query is an entity class, add a rule for ordering the query results.QueryImplementor<R>setParameter(int position, Object value)Bind the given argument to an ordinal query parameter.QueryImplementor<R>setParameter(int position, Instant value, TemporalType temporalType)Bind anInstantto an ordinal query parameter using just the portion indicated by the givenTemporalType.QueryImplementor<R>setParameter(int position, Calendar value, TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(int position, Date value, 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(Parameter<Calendar> param, Calendar value, TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(Parameter<Date> param, Date value, TemporalType temporalType)Queryoverride<P> QueryImplementor<R>setParameter(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, TemporalType temporalType)Bind anInstantto the named query parameter using just the portion indicated by the givenTemporalType.QueryImplementor<R>setParameter(String name, Calendar value, TemporalType temporalType)QueryoverrideQueryImplementor<R>setParameter(String name, Date value, 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>setQueryPlanCacheable(boolean queryPlanCacheable)Enable/disable query plan caching for this query.QueryImplementor<R>setReadOnly(boolean readOnly)Set the read-only/modifiable mode for entities and proxies loaded by thisQuery.QueryImplementor<R>setResultListTransformer(ResultListTransformer<R> transformer)Set aResultListTransformer.QueryImplementor<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, afterQuery, afterQueryHandlingFetchProfiles, beforeQuery, beforeQueryHandlingFetchProfiles, doList, doScroll, getCacheMode, getCacheRegion, getCacheRetrieveMode, getCacheStoreMode, getCallback, getFetchSize, getHibernateLockMode, getQueryString, getResultStream, getSessionFactory, getSingleResult, getSingleResultOrNull, hasCallbackActions, isQueryPlanCacheable, isReadOnly, list, requiresTxn, resetCallback, scroll, scroll, setAliasSpecificLockMode, setFollowOnLocking, setHibernateLockMode, stream, uniqueElement, uniqueResult, uniqueResultOptional
-
Methods inherited from class org.hibernate.query.spi.AbstractCommonQueryContract
applyAdditionalPossibleHints, applyAliasSpecificLockModeHint, applyCacheableHint, applyCacheModeHint, applyCacheRegionHint, applyCommentHint, applyDatabaseHint, applyEntityGraphHint, applyFetchSizeHint, applyFirstResult, applyFlushModeHint, applyFollowOnLockingHint, applyGraph, applyGraph, applyHibernateLockMode, applyHint, applyJpaCacheRetrieveModeHint, applyJpaCacheStoreModeHint, applyJpaFlushMode, applyLockModeHint, applyLockModeType, applyLockTimeoutHint, applyLockTimeoutHint, applyMaxResults, applyQueryPlanCacheableHint, 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, getResultType, 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, setPage, 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, getCacheRetrieveMode, getCacheStoreMode, getFetchSize, getHibernateLockMode, getResultCount, getSingleResultOrNull, isQueryPlanCacheable, 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:CommonQueryContractSet a hint. The hints understood by Hibernate are enumerated byAvailableHints.- Specified by:
setHintin interfaceCommonQueryContract- Specified by:
setHintin interfaceMutationQuery- Specified by:
setHintin interfaceQuery- Specified by:
setHintin interfaceQuery<R>- Specified by:
setHintin interfaceSelectionQuery<R>- Specified by:
setHintin interfaceTypedQuery<R>- Overrides:
setHintin classAbstractSelectionQuery<R>- See Also:
HibernateHints,SpecHints
-
setEntityGraph
public QueryImplementor<R> setEntityGraph(EntityGraph<R> graph, GraphSemantic semantic)
Description copied from interface:SelectionQueryApply anEntityGraphto the query.This is an alternative way to specify the associations which should be fetched as part of the initial query.
- Specified by:
setEntityGraphin interfaceQuery<R>- Specified by:
setEntityGraphin interfaceSelectionQuery<R>- Overrides:
setEntityGraphin classAbstractSelectionQuery<R>
-
enableFetchProfile
public QueryImplementor<R> enableFetchProfile(String profileName)
Description copied from interface:SelectionQueryEnable thefetch profilefor this query. If the requested fetch profile is already enabled, the call has no effect.This is an alternative way to specify the associations which should be fetched as part of the initial query.
- Specified by:
enableFetchProfilein interfaceQuery<R>- Specified by:
enableFetchProfilein interfaceSelectionQuery<R>- Overrides:
enableFetchProfilein classAbstractSelectionQuery<R>- Parameters:
profileName- the name of the fetch profile to be enabled- See Also:
FetchProfile
-
disableFetchProfile
public QueryImplementor<R> disableFetchProfile(String profileName)
Description copied from interface:SelectionQueryDisable thefetch profilewith the given name in this session. If the requested fetch profile is not currently enabled, the call has no effect.- Specified by:
disableFetchProfilein interfaceQuery<R>- Specified by:
disableFetchProfilein interfaceSelectionQuery<R>- Overrides:
disableFetchProfilein classAbstractSelectionQuery<R>- Parameters:
profileName- the name of the fetch profile to be disabled- See Also:
FetchProfile
-
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 interfaceQuery- 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 interfaceQuery- Specified by:
setMaxResultsin interfaceQuery<R>- Specified by:
setMaxResultsin interfaceSelectionQuery<R>- Specified by:
setMaxResultsin interfaceTypedQuery<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 interfaceQuery- 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 interfaceQuery- Specified by:
setFirstResultin interfaceQuery<R>- Specified by:
setFirstResultin interfaceSelectionQuery<R>- Specified by:
setFirstResultin interfaceTypedQuery<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 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 interfaceQuery- Overrides:
getFlushModein classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.getHibernateFlushMode(),Session.getHibernateFlushMode()
-
setFlushMode
public QueryImplementor<R> setFlushMode(FlushModeType flushModeType)
Description copied from interface:CommonQueryContractSet theFlushModein to use for this query.- Specified by:
setFlushModein interfaceCommonQueryContract- Specified by:
setFlushModein interfaceMutationQuery- Specified by:
setFlushModein interfaceQuery- Specified by:
setFlushModein interfaceQuery<R>- Specified by:
setFlushModein interfaceSelectionQuery<R>- Specified by:
setFlushModein interfaceTypedQuery<R>- Overrides:
setFlushModein classAbstractSelectionQuery<R>- See Also:
CommonQueryContract.getHibernateFlushMode(),Session.getHibernateFlushMode()
-
setCacheMode
public QueryImplementor<R> setCacheMode(CacheMode cacheMode)
Description copied from interface:SelectionQuerySet the currentCacheModein effect for this query.- Specified by:
setCacheModein interfaceQuery<R>- Specified by:
setCacheModein interfaceSelectionQuery<R>- Overrides:
setCacheModein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.getCacheMode(),Session.setCacheMode(CacheMode)
-
setCacheRetrieveMode
public QueryImplementor<R> setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode)
- Specified by:
setCacheRetrieveModein interfaceQuery<R>- Specified by:
setCacheRetrieveModein interfaceSelectionQuery<R>- Overrides:
setCacheRetrieveModein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.setCacheMode(CacheMode)
-
setCacheStoreMode
public QueryImplementor<R> setCacheStoreMode(CacheStoreMode cacheStoreMode)
- Specified by:
setCacheStoreModein interfaceQuery<R>- Specified by:
setCacheStoreModein interfaceSelectionQuery<R>- Overrides:
setCacheStoreModein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.setCacheMode(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 to second level caching of any returned entities and collections, which is controlled by
SelectionQuery.getCacheMode().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 the
SessionFactoryfor this to happen. Usually that is controlled by the configuration setting "hibernate.cache.use_query_cache".- Specified by:
isCacheablein interfaceSelectionQuery<R>- Overrides:
isCacheablein classAbstractSelectionQuery<R>
-
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()
-
setQueryPlanCacheable
public QueryImplementor<R> setQueryPlanCacheable(boolean queryPlanCacheable)
Description copied from interface:SelectionQueryEnable/disable query plan caching for this query.- Specified by:
setQueryPlanCacheablein interfaceSelectionQuery<R>- Overrides:
setQueryPlanCacheablein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.isQueryPlanCacheable()
-
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 interfaceMutationQuery- 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 thisQuery. This setting overrides the default setting for the persistence context,Session.isDefaultReadOnly().To set the default read-only/modifiable setting used for entities and proxies that are loaded into the session, use
Session.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.
- 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
-
getLockOptions
public LockOptions getLockOptions()
Description copied from interface:SelectionQueryTheLockOptionscurrently in effect for the query- Specified by:
getLockOptionsin interfaceQuery<R>- Specified by:
getLockOptionsin interfaceSelectionQuery<R>- Overrides:
getLockOptionsin classAbstractSelectionQuery<R>- Returns:
- The
LockOptionscurrently in effect - See Also:
LockOptions
-
getLockMode
public LockModeType getLockMode()
Description copied from interface:SelectionQueryGet the rootLockModeTypefor the query- Specified by:
getLockModein interfaceQuery- Specified by:
getLockModein interfaceSelectionQuery<R>- Overrides:
getLockModein classAbstractSelectionQuery<R>- See Also:
SelectionQuery.getHibernateLockMode()
-
setLockOptions
public QueryImplementor<R> setLockOptions(LockOptions lockOptions)
Description copied from interface:QueryApply the given lock options to this query. Alias-specific lock modes in the given lock options are merged with any alias-specific lock mode which have already been set. If a lock mode has already been specified for an alias that is among the aliases in the given lock options, the lock mode specified in the given lock options overrides the lock mode that was already set.- 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:SelectionQuerySpecify aLockModeto apply to a specific alias defined in the query- Specified by:
setLockModein interfaceQuery<R>- Specified by:
setLockModein interfaceSelectionQuery<R>- Overrides:
setLockModein classAbstractSelectionQuery<R>- Parameters:
alias- A query aliaslockMode- The lock mode to apply- Returns:
this, for method chaining- See Also:
Query.getLockOptions()
-
setLockMode
public QueryImplementor<R> setLockMode(LockModeType lockModeType)
Description copied from class:AbstractSelectionQuerySpecify the root LockModeType for the query- Specified by:
setLockModein interfaceQuery- Specified by:
setLockModein interfaceQuery<R>- Specified by:
setLockModein interfaceSelectionQuery<R>- Specified by:
setLockModein interfaceTypedQuery<R>- Overrides:
setLockModein classAbstractSelectionQuery<R>- See Also:
AbstractSelectionQuery.setHibernateLockMode(org.hibernate.LockMode)
-
setOrder
public Query<R> setOrder(List<Order<? super R>> orders)
Description copied from interface:SelectionQueryIf the result type of this query is an entity class, add one or more rules for ordering the query results.
-
setOrder
public Query<R> setOrder(Order<? super R> order)
Description copied from interface:SelectionQueryIf the result type of this query is an entity class, add a rule for ordering the query results.
-
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 interfaceMutationQuery- Specified by:
setCommentin interfaceQuery<R>- Specified by:
setCommentin interfaceSelectionQuery<R>- Overrides:
setCommentin classAbstractSelectionQuery<R>- 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<Parameter<?>> getParameters()
- Specified by:
getParametersin interfaceQuery- 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 interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<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:
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>
-
setParameter
public QueryImplementor<R> setParameter(String name, Instant value, 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 interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<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:
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>
-
setParameter
public QueryImplementor<R> setParameter(int position, Instant value, 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:
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(Parameter<P> parameter, P value)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<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:
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:
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:
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:
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:
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:
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(Parameter<Calendar> param, Calendar value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(Parameter, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(Parameter<Date> param, Date value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(Parameter, Date, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(String name, Calendar value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(String, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(String name, Date value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(String, Date, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(int position, Calendar value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<R>- Overrides:
setParameterin classAbstractSelectionQuery<R>- See Also:
Query.setParameter(int, Calendar, TemporalType)
-
setParameter
public QueryImplementor<R> setParameter(int position, Date value, TemporalType temporalType)
Description copied from interface:QueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceMutationQuery- Specified by:
setParameterin interfaceQuery- Specified by:
setParameterin interfaceQuery<R>- Specified by:
setParameterin interfaceQueryImplementor<R>- Specified by:
setParameterin interfaceSelectionQuery<R>- Specified by:
setParameterin interfaceTypedQuery<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 interfaceQuery- 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()
-
getKeyedResultList
public KeyedResultList<R> getKeyedResultList(KeyedPage<R> keyedPage)
Description copied from interface:SelectionQueryExecute the query and return the results for the given page, using key-based pagination.- Specified by:
getKeyedResultListin interfaceSelectionQuery<R>- Parameters:
keyedPage- the key-based specification of the page as an instance ofKeyedPage- Returns:
- the query results and the key of the next page
as an instance of
KeyedResultList - See Also:
KeyedPage,KeyedResultList
-
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>
-
-