Uses of Interface
org.hibernate.query.sqm.SqmSelectionQuery
-
Packages that use SqmSelectionQuery Package Description org.hibernate.query.criteria.internal org.hibernate.query.hql.internal org.hibernate.query.sqm org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.spi SPI-level SQM contracts -
-
Uses of SqmSelectionQuery in org.hibernate.query.criteria.internal
Methods in org.hibernate.query.criteria.internal that return SqmSelectionQuery Modifier and Type Method Description <T> SqmSelectionQuery<T>
NamedCriteriaQueryMementoImpl. toSelectionQuery(Class<T> resultType, SharedSessionContractImplementor session)
-
Uses of SqmSelectionQuery in org.hibernate.query.hql.internal
Methods in org.hibernate.query.hql.internal that return SqmSelectionQuery Modifier and Type Method Description <T> SqmSelectionQuery<T>
NamedHqlQueryMementoImpl. toSelectionQuery(Class<T> resultType, SharedSessionContractImplementor session)
-
Uses of SqmSelectionQuery in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return SqmSelectionQuery Modifier and Type Method Description SqmSelectionQuery<R>
SqmSelectionQuery. setCacheable(boolean cacheable)
SqmSelectionQuery<R>
SqmSelectionQuery. setCacheMode(CacheMode cacheMode)
SqmSelectionQuery<R>
SqmSelectionQuery. setCacheRegion(String cacheRegion)
SqmSelectionQuery<R>
SqmSelectionQuery. setFetchSize(int fetchSize)
SqmSelectionQuery<R>
SqmSelectionQuery. setHibernateFlushMode(FlushMode flushMode)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, Object value)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, P value, Class<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(int position, P value, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
<T> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(jakarta.persistence.Parameter<T> param, T value)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, Object value)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, P value, Class<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(String name, P value, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
<T> SqmSelectionQuery<R>
SqmSelectionQuery. setParameter(QueryParameter<T> parameter, T value)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, Object[] values)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, Collection values)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(int position, P[] values, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, Object[] values)
SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, Collection values)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(String name, P[] values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQuery. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQuery. setProperties(Object bean)
SqmSelectionQuery<R>
SqmSelectionQuery. setProperties(Map bean)
SqmSelectionQuery<R>
SqmSelectionQuery. setReadOnly(boolean readOnly)
SqmSelectionQuery<R>
SqmSelectionQuery. setTimeout(int timeout)
-
Uses of SqmSelectionQuery in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement SqmSelectionQuery Modifier and Type Class Description class
SqmSelectionQueryImpl<R>
Methods in org.hibernate.query.sqm.internal that return SqmSelectionQuery Modifier and Type Method Description SqmSelectionQuery<R>
SqmSelectionQueryImpl. setAliasSpecificLockMode(String alias, LockMode lockMode)
Specify a LockMode to apply to a specific alias defined in the querySqmSelectionQuery<R>
SqmSelectionQueryImpl. setCacheable(boolean cacheable)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setCacheMode(CacheMode cacheMode)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setCacheRegion(String regionName)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setFetchSize(int fetchSize)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setFlushMode(jakarta.persistence.FlushModeType flushMode)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setFollowOnLocking(boolean enable)
Specifies whether follow-on locking should be applied?SqmSelectionQuery<R>
SqmSelectionQueryImpl. setHibernateFlushMode(FlushMode flushMode)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setHibernateLockMode(LockMode lockMode)
Specify the root LockMode for the querySqmSelectionQuery<R>
SqmSelectionQueryImpl. setLockMode(jakarta.persistence.LockModeType lockMode)
Specify the root LockModeType for the querySqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, Object value)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, P value, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(int position, P value, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(jakarta.persistence.Parameter<P> parameter, P value)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, Object value)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, P value, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(String name, P value, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(QueryParameter<P> parameter, P value)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, Object[] values)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, Collection values)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(int position, P[] values, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, Object[] values)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, Collection values)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(String name, P[] values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, P[] values)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> SqmSelectionQuery<R>
SqmSelectionQueryImpl. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setProperties(Object bean)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setProperties(Map map)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setReadOnly(boolean readOnly)
SqmSelectionQuery<R>
SqmSelectionQueryImpl. setTimeout(int timeout)
-
Uses of SqmSelectionQuery in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi that return SqmSelectionQuery Modifier and Type Method Description <T> SqmSelectionQuery<T>
NamedSqmQueryMemento. toSelectionQuery(Class<T> resultType, SharedSessionContractImplementor session)
-