Uses of Interface
org.hibernate.query.SelectionQuery
-
Packages that use SelectionQuery Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.hql.spi SPIs for HQL support.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation details -
-
Uses of SelectionQuery in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return SelectionQuery Modifier and Type Method Description SelectionQuery<?>
SessionDelegatorBaseImpl. createNamedSelectionQuery(String name)
<R> SelectionQuery<R>
SessionDelegatorBaseImpl. createNamedSelectionQuery(String name, Class<R> resultType)
SelectionQuery<?>
SessionLazyDelegator. createNamedSelectionQuery(String name)
<R> SelectionQuery<R>
SessionLazyDelegator. createNamedSelectionQuery(String name, Class<R> resultType)
SelectionQuery<?>
SharedSessionDelegatorBaseImpl. createNamedSelectionQuery(String name)
<R> SelectionQuery<R>
SharedSessionDelegatorBaseImpl. createNamedSelectionQuery(String name, Class<R> resultType)
<R> SelectionQuery<R>
SessionDelegatorBaseImpl. createSelectionQuery(CriteriaQuery<R> criteria)
SelectionQuery<?>
SessionDelegatorBaseImpl. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
SessionDelegatorBaseImpl. createSelectionQuery(String hqlString, Class<R> resultType)
<R> SelectionQuery<R>
SessionLazyDelegator. createSelectionQuery(CriteriaQuery<R> criteria)
SelectionQuery<?>
SessionLazyDelegator. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
SessionLazyDelegator. createSelectionQuery(String hqlString, Class<R> resultType)
<R> SelectionQuery<R>
SharedSessionDelegatorBaseImpl. createSelectionQuery(CriteriaQuery<R> criteria)
SelectionQuery<?>
SharedSessionDelegatorBaseImpl. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
SharedSessionDelegatorBaseImpl. createSelectionQuery(String hqlString, Class<R> resultType)
-
Uses of SelectionQuery in org.hibernate.internal
Methods in org.hibernate.internal that return SelectionQuery Modifier and Type Method Description SelectionQuery<?>
AbstractSharedSessionContract. createNamedSelectionQuery(String queryName)
<R> SelectionQuery<R>
AbstractSharedSessionContract. createNamedSelectionQuery(String queryName, Class<R> expectedResultType)
<R> SelectionQuery<R>
AbstractSharedSessionContract. createSelectionQuery(CriteriaQuery<R> criteria)
SelectionQuery<?>
AbstractSharedSessionContract. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
AbstractSharedSessionContract. createSelectionQuery(String hqlString, Class<R> expectedResultType)
Methods in org.hibernate.internal with parameters of type SelectionQuery Modifier and Type Method Description protected void
SessionImpl. applyLockOptionsHint(SelectionQuery<?> query)
protected void
AbstractSharedSessionContract. applyQuerySettingsAndHints(SelectionQuery<?> query)
protected void
SessionImpl. applyQuerySettingsAndHints(SelectionQuery<?> query)
-
Uses of SelectionQuery in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement SelectionQuery Modifier and Type Class Description class
ProcedureCallImpl<R>
Standard implementation ofProcedureCall
-
Uses of SelectionQuery in org.hibernate.procedure.spi
Subinterfaces of SelectionQuery in org.hibernate.procedure.spi Modifier and Type Interface Description interface
ProcedureCallImplementor<R>
-
Uses of SelectionQuery in org.hibernate.query
Subinterfaces of SelectionQuery in org.hibernate.query Modifier and Type Interface Description interface
NativeQuery<T>
Within the context of an active session, an instance of this type represents an executable query written in the native SQL dialect of the underlying database.interface
Query<R>
Within the context of an active session, an instance of this type represents an executable query, either: a query written in HQL, a named query written in HQL or native SQL, or a criteria query.Methods in org.hibernate.query that return SelectionQuery Modifier and Type Method Description SelectionQuery<?>
QueryProducer. createNamedSelectionQuery(String name)
Create aSelectionQuery
instance for the namedNamedQuery
<R> SelectionQuery<R>
QueryProducer. createNamedSelectionQuery(String name, Class<R> resultType)
Create aSelectionQuery
instance for the namedNamedQuery
with the expected result-type<R> SelectionQuery<R>
QueryProducer. createSelectionQuery(CriteriaQuery<R> criteria)
Create aSelectionQuery
reference for the given Criteria.SelectionQuery<?>
QueryProducer. createSelectionQuery(String hqlString)
Create aSelectionQuery
reference for the given HQL.<R> SelectionQuery<R>
QueryProducer. createSelectionQuery(String hqlString, Class<R> resultType)
Create aSelectionQuery
reference for the given HQL.@Remove SelectionQuery<R>
SelectionQuery. setAliasSpecificLockMode(String alias, LockMode lockMode)
Deprecated.SelectionQuery<R>
SelectionQuery. setCacheable(boolean cacheable)
Enable/disable second level query (result) caching for this query.SelectionQuery<R>
SelectionQuery. setCacheMode(CacheMode cacheMode)
Set the currentCacheMode
in effect for this query.SelectionQuery<R>
SelectionQuery. setCacheRegion(String cacheRegion)
Set the name of the cache region where query results should be cached (assumingisCacheable()
).SelectionQuery<R>
SelectionQuery. setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode)
SelectionQuery<R>
SelectionQuery. setCacheStoreMode(CacheStoreMode cacheStoreMode)
SelectionQuery<R>
SelectionQuery. setComment(String comment)
SelectionQuery<R>
SelectionQuery. setFetchSize(int fetchSize)
Sets a JDBC fetch size hint for the query.SelectionQuery<R>
SelectionQuery. setFirstResult(int startPosition)
Set the first row position to return from the query results.SelectionQuery<R>
SelectionQuery. setFlushMode(FlushModeType flushMode)
SelectionQuery<R>
SelectionQuery. setFollowOnLocking(boolean enable)
Specifies whether follow-on locking should be appliedSelectionQuery<R>
SelectionQuery. setHibernateFlushMode(FlushMode flushMode)
SelectionQuery<R>
SelectionQuery. setHibernateLockMode(LockMode lockMode)
Specify the rootLockMode
for the querySelectionQuery<R>
SelectionQuery. setHint(String hintName, Object value)
SelectionQuery<R>
SelectionQuery. setLockMode(LockModeType lockMode)
Specify the rootLockModeType
for the querySelectionQuery<R>
SelectionQuery. setLockMode(String alias, LockMode lockMode)
Specify aLockMode
to apply to a specific alias defined in the querySelectionQuery<R>
SelectionQuery. setMaxResults(int maxResult)
Set the max number of rows requested for the query results.SelectionQuery<R>
SelectionQuery. setParameter(int position, Object value)
SelectionQuery<R>
SelectionQuery. setParameter(int position, Instant value, TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(int position, Calendar value, TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(int position, Date value, TemporalType temporalType)
<P> SelectionQuery<R>
SelectionQuery. setParameter(int position, P value, Class<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameter(int position, P value, BindableType<P> type)
SelectionQuery<R>
SelectionQuery. setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)
<T> SelectionQuery<R>
SelectionQuery. setParameter(Parameter<T> param, T value)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Object value)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Instant value, TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Calendar value, TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Date value, TemporalType temporalType)
<P> SelectionQuery<R>
SelectionQuery. setParameter(String name, P value, Class<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameter(String name, P value, BindableType<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
<T> SelectionQuery<R>
SelectionQuery. setParameter(QueryParameter<T> parameter, T value)
SelectionQuery<R>
SelectionQuery. setParameterList(int position, Object[] values)
SelectionQuery<R>
SelectionQuery. setParameterList(int position, Collection values)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(int position, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(int position, P[] values, BindableType<P> type)
SelectionQuery<R>
SelectionQuery. setParameterList(String name, Object[] values)
SelectionQuery<R>
SelectionQuery. setParameterList(String name, Collection values)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(String name, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(String name, P[] values, BindableType<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
SelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
SelectionQuery<R>
SelectionQuery. setProperties(Object bean)
SelectionQuery<R>
SelectionQuery. setProperties(Map bean)
SelectionQuery<R>
SelectionQuery. setReadOnly(boolean readOnly)
Set the read-only/modifiable mode for entities and proxies loaded by thisQuery
.SelectionQuery<R>
SelectionQuery. setTimeout(int timeout)
-
Uses of SelectionQuery in org.hibernate.query.hql.spi
Subinterfaces of SelectionQuery in org.hibernate.query.hql.spi Modifier and Type Interface Description interface
SqmQueryImplementor<R>
QueryImplementor
specialization for SQM-based Query references -
Uses of SelectionQuery in org.hibernate.query.spi
Subinterfaces of SelectionQuery in org.hibernate.query.spi Modifier and Type Interface Description interface
QueryImplementor<R>
Classes in org.hibernate.query.spi that implement SelectionQuery Modifier and Type Class Description class
AbstractQuery<R>
class
AbstractSelectionQuery<R>
Methods in org.hibernate.query.spi that return SelectionQuery Modifier and Type Method Description SelectionQuery<R>
AbstractSelectionQuery. setAliasSpecificLockMode(String alias, LockMode lockMode)
Deprecated.SelectionQuery<R>
AbstractSelectionQuery. setCacheable(boolean cacheable)
SelectionQuery<R>
AbstractSelectionQuery. setCacheMode(CacheMode cacheMode)
SelectionQuery<R>
AbstractSelectionQuery. setCacheRegion(String regionName)
SelectionQuery<R>
AbstractSelectionQuery. setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode)
SelectionQuery<R>
AbstractSelectionQuery. setCacheStoreMode(CacheStoreMode cacheStoreMode)
SelectionQuery<R>
AbstractSelectionQuery. setComment(String comment)
SelectionQuery<R>
AbstractSelectionQuery. setFetchSize(int fetchSize)
SelectionQuery<R>
AbstractSelectionQuery. setFirstResult(int startPosition)
SelectionQuery<R>
AbstractSelectionQuery. setFlushMode(FlushModeType flushMode)
SelectionQuery<R>
AbstractSelectionQuery. setFollowOnLocking(boolean enable)
Specifies whether follow-on locking should be applied?SelectionQuery<R>
AbstractSelectionQuery. setHibernateFlushMode(FlushMode flushMode)
SelectionQuery<R>
AbstractSelectionQuery. setHibernateLockMode(LockMode lockMode)
Specify the root LockMode for the querySelectionQuery<R>
AbstractSelectionQuery. setHint(String hintName, Object value)
SelectionQuery<R>
AbstractSelectionQuery. setLockMode(LockModeType lockMode)
Specify the root LockModeType for the querySelectionQuery<R>
AbstractSelectionQuery. setLockMode(String alias, LockMode lockMode)
SelectionQuery<R>
AbstractSelectionQuery. setMaxResults(int maxResult)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Object value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Instant value, TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Calendar value, TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Date value, TemporalType temporalType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, P value, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, P value, BindableType<P> type)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(Parameter<P> parameter, P value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Object value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Instant value, TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Calendar value, TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Date value, TemporalType temporalType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, P value, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, P value, BindableType<P> type)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(QueryParameter<P> parameter, P value)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)
SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, Object[] values)
SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, Collection values)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(int position, P[] values, BindableType<P> type)
SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, Object[] values)
SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, Collection values)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(String name, P[] values, BindableType<P> type)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
SelectionQuery<R>
AbstractSelectionQuery. setProperties(Object bean)
SelectionQuery<R>
AbstractSelectionQuery. setProperties(Map map)
SelectionQuery<R>
AbstractSelectionQuery. setReadOnly(boolean readOnly)
SelectionQuery<R>
AbstractSelectionQuery. setTimeout(int timeout)
-
Uses of SelectionQuery in org.hibernate.query.sql.internal
Classes in org.hibernate.query.sql.internal that implement SelectionQuery Modifier and Type Class Description class
NativeQueryImpl<R>
-
Uses of SelectionQuery in org.hibernate.query.sql.spi
Subinterfaces of SelectionQuery in org.hibernate.query.sql.spi Modifier and Type Interface Description interface
NativeQueryImplementor<R>
-
Uses of SelectionQuery in org.hibernate.query.sqm
Subinterfaces of SelectionQuery in org.hibernate.query.sqm Modifier and Type Interface Description interface
SqmSelectionQuery<R>
-
Uses of SelectionQuery in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement SelectionQuery Modifier and Type Class Description class
QuerySqmImpl<R>
Query
implementation based on an SQMclass
SqmSelectionQueryImpl<R>
-