Interface SqmSelectQuery<T>
-
- All Superinterfaces:
jakarta.persistence.criteria.AbstractQuery<T>,jakarta.persistence.criteria.CommonAbstractCriteria,JpaCriteriaBase,JpaCriteriaNode,JpaSelectCriteria<T>,Serializable,SqmNode,SqmQuery<T>
- All Known Implementing Classes:
AbstractSqmSelectQuery,SqmSelectStatement,SqmSubQuery
public interface SqmSelectQuery<T> extends SqmQuery<T>, JpaSelectCriteria<T>, SqmNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqmSelectQuery<T>distinct(boolean distinct)SqmQueryPart<T>getQueryPart()The query structure.SqmQuerySpec<T>getQuerySpec()The query structure.-
Methods inherited from interface jakarta.persistence.criteria.AbstractQuery
getGroupList, getResultType, getRoots, isDistinct
-
Methods inherited from interface org.hibernate.query.criteria.JpaCriteriaBase
subquery
-
Methods inherited from interface org.hibernate.query.criteria.JpaSelectCriteria
from, from, from, getGroupRestriction, getRestriction, getSelection, groupBy, groupBy, having, having, where, where
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmNode
asLoggableText, nodeBuilder
-
-
-
-
Method Detail
-
getQuerySpec
SqmQuerySpec<T> getQuerySpec()
Description copied from interface:JpaSelectCriteriaThe query structure. SeeJpaQueryStructurefor details- Specified by:
getQuerySpecin interfaceJpaSelectCriteria<T>
-
getQueryPart
SqmQueryPart<T> getQueryPart()
Description copied from interface:JpaSelectCriteriaThe query structure. SeeJpaQueryStructurefor details- Specified by:
getQueryPartin interfaceJpaSelectCriteria<T>
-
distinct
SqmSelectQuery<T> distinct(boolean distinct)
- Specified by:
distinctin interfacejakarta.persistence.criteria.AbstractQuery<T>- Specified by:
distinctin interfaceJpaSelectCriteria<T>
-
-