Uses of Interface
org.hibernate.query.SelectionQuery
-
Packages that use SelectionQuery Package Description org.hibernate.engine.spi org.hibernate.internal org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi org.hibernate.query org.hibernate.query.hql.spi org.hibernate.query.spi org.hibernate.query.sql.internal org.hibernate.query.sql.spi org.hibernate.query.sqm 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)
<R> SelectionQuery<R>
SessionDelegatorBaseImpl. createSelectionQuery(jakarta.persistence.criteria.CriteriaQuery<R> criteria)
SelectionQuery<?>
SessionDelegatorBaseImpl. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
SessionDelegatorBaseImpl. createSelectionQuery(String hqlString, Class<R> resultType)
<R> SelectionQuery<R>
SessionLazyDelegator. createSelectionQuery(jakarta.persistence.criteria.CriteriaQuery<R> criteria)
SelectionQuery<?>
SessionLazyDelegator. createSelectionQuery(String hqlString)
<R> SelectionQuery<R>
SessionLazyDelegator. 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(jakarta.persistence.criteria.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>
Represents a native (SQL) query.interface
Query<R>
Represents a criteria query or a query written in HQL.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(jakarta.persistence.criteria.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.SelectionQuery<R>
SelectionQuery. setAliasSpecificLockMode(String alias, LockMode lockMode)
Specify a LockMode to apply to a specific alias defined in the querySelectionQuery<R>
SelectionQuery. setCacheable(boolean cacheable)
Enable/disable second level query (result) caching for this query.SelectionQuery<R>
SelectionQuery. setCacheMode(CacheMode cacheMode)
Set the current CacheMode 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. 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(jakarta.persistence.FlushModeType flushMode)
SelectionQuery<R>
SelectionQuery. setFollowOnLocking(boolean enable)
Specifies whether follow-on locking should be applied?SelectionQuery<R>
SelectionQuery. setHibernateFlushMode(FlushMode flushMode)
SelectionQuery<R>
SelectionQuery. setHibernateLockMode(LockMode lockMode)
Specify the root LockMode for the querySelectionQuery<R>
SelectionQuery. setHint(String hintName, Object value)
SelectionQuery<R>
SelectionQuery. setLockMode(jakarta.persistence.LockModeType lockMode)
Specify the root LockModeType for 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, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(int position, Date value, jakarta.persistence.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(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
<T> SelectionQuery<R>
SelectionQuery. setParameter(jakarta.persistence.Parameter<T> param, T value)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Object value)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
SelectionQuery. setParameter(String name, Date value, jakarta.persistence.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 this Query.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)
Specify a LockMode to apply to a specific alias defined in the querySelectionQuery<R>
AbstractSelectionQuery. setCacheable(boolean cacheable)
SelectionQuery<R>
AbstractSelectionQuery. setCacheMode(CacheMode cacheMode)
SelectionQuery<R>
AbstractSelectionQuery. setCacheRegion(String regionName)
SelectionQuery<R>
AbstractSelectionQuery. setFetchSize(int fetchSize)
SelectionQuery<R>
AbstractSelectionQuery. setFirstResult(int startPosition)
SelectionQuery<R>
AbstractSelectionQuery. setFlushMode(jakarta.persistence.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(jakarta.persistence.LockModeType lockMode)
Specify the root LockModeType for the querySelectionQuery<R>
AbstractSelectionQuery. setMaxResults(int maxResult)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Object value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(int position, Date value, jakarta.persistence.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(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
<P> SelectionQuery<R>
AbstractSelectionQuery. setParameter(jakarta.persistence.Parameter<P> parameter, P value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Object value)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
SelectionQuery<R>
AbstractSelectionQuery. setParameter(String name, Date value, jakarta.persistence.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>
-