Uses of Interface
org.hibernate.query.sqm.tree.select.SqmSelectQuery
-
Packages that use SqmSelectQuery Package Description org.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselectstatements in the SQM tree. -
-
Uses of SqmSelectQuery in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type SqmSelectQuery Modifier and Type Method Description protected ObjectBaseSemanticQueryWalker. visitSelectQuery(SqmSelectQuery<?> selectQuery) -
Uses of SqmSelectQuery in org.hibernate.query.sqm.tree.cte
Methods in org.hibernate.query.sqm.tree.cte that return SqmSelectQuery Modifier and Type Method Description SqmSelectQuery<?>SqmCteStatement. getCteDefinition()Methods in org.hibernate.query.sqm.tree.cte with parameters of type SqmSelectQuery Modifier and Type Method Description static <X> SqmCteTable<X>SqmCteTable. createStatementTable(String name, SqmCteStatement<X> cteStatement, SqmSelectQuery<X> selectStatement)Constructors in org.hibernate.query.sqm.tree.cte with parameters of type SqmSelectQuery Constructor Description SqmCteStatement(String name, SqmSelectQuery<T> nonRecursiveQueryPart, boolean unionDistinct, Function<JpaCteCriteria<T>,AbstractQuery<T>> finalCriteriaProducer, SqmCteContainer cteContainer, NodeBuilder nodeBuilder)SqmCteStatement(String name, SqmSelectQuery<T> cteDefinition, SqmCteContainer cteContainer, NodeBuilder nodeBuilder) -
Uses of SqmSelectQuery in org.hibernate.query.sqm.tree.select
Classes in org.hibernate.query.sqm.tree.select that implement SqmSelectQuery Modifier and Type Class Description classAbstractSqmSelectQuery<T>classSqmSelectStatement<T>classSqmSubQuery<T>Methods in org.hibernate.query.sqm.tree.select that return SqmSelectQuery Modifier and Type Method Description SqmSelectQuery<T>SqmSelectQuery. copy(SqmCopyContext context)SqmSelectQuery<T>AbstractSqmSelectQuery. distinct(boolean distinct)SqmSelectQuery<T>SqmSelectQuery. distinct(boolean distinct)SqmSelectQuery<?>SqmSubQuery. getParent()SqmSelectQuery<T>AbstractSqmSelectQuery. groupBy(Expression<?>... expressions)SqmSelectQuery<T>AbstractSqmSelectQuery. groupBy(List<Expression<?>> grouping)SqmSelectQuery<T>AbstractSqmSelectQuery. having(Expression<Boolean> booleanExpression)SqmSelectQuery<T>AbstractSqmSelectQuery. having(Predicate... predicates)SqmSelectQuery<T>AbstractSqmSelectQuery. where(Expression<Boolean> restriction)SqmSelectQuery<T>AbstractSqmSelectQuery. where(Predicate... restrictions)
-