Uses of Class
org.hibernate.query.sqm.tree.select.SqmSelectStatement
-
Packages that use SqmSelectStatement Package Description 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.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree.select Nodes representingselectstatements in the SQM tree. -
-
Uses of SqmSelectStatement in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type SqmSelectStatement Modifier and Type Method Description protected intAbstractCommonQueryContract. getMaxRows(SqmSelectStatement<?> selectStatement, int size)protected static booleanAbstractSelectionQuery. hasLimit(SqmSelectStatement<?> sqm, MutableQueryOptions queryOptions) -
Uses of SqmSelectStatement in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return SqmSelectStatement Modifier and Type Method Description SqmSelectStatement<Object>NodeBuilder. createQuery()<T> SqmSelectStatement<T>NodeBuilder. createQuery(Class<T> resultClass)SqmSelectStatement<Tuple>NodeBuilder. createTupleQuery()Methods in org.hibernate.query.sqm with parameters of type SqmSelectStatement Modifier and Type Method Description TSemanticQueryWalker. visitSelectStatement(SqmSelectStatement<?> statement) -
Uses of SqmSelectStatement in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type SqmSelectStatement Modifier and Type Method Description ObjectBaseSemanticQueryWalker. visitSelectStatement(SqmSelectStatement<?> statement) -
Uses of SqmSelectStatement in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type SqmSelectStatement Modifier and Type Method Description SqmTranslator<SelectStatement>SqmTranslatorFactory. createSelectTranslator(SqmSelectStatement<?> sqmSelectStatement, QueryOptions queryOptions, org.hibernate.query.sqm.internal.DomainParameterXref domainParameterXref, QueryParameterBindings domainParameterBindings, LoadQueryInfluencers loadQueryInfluencers, SqlAstCreationContext creationContext, boolean deduplicateSelectionItems)SqmTranslator<SelectStatement>StandardSqmTranslatorFactory. createSelectTranslator(SqmSelectStatement<?> sqmSelectStatement, QueryOptions queryOptions, org.hibernate.query.sqm.internal.DomainParameterXref domainParameterXref, QueryParameterBindings domainParameterBindings, LoadQueryInfluencers loadQueryInfluencers, SqlAstCreationContext creationContext, boolean deduplicateSelectionItems)SelectStatementBaseSqmToSqlAstConverter. visitSelectStatement(SqmSelectStatement<?> statement) -
Uses of SqmSelectStatement in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return SqmSelectStatement Modifier and Type Method Description SqmSelectStatement<T>SqmSelectStatement. copy(SqmCopyContext context)SqmSelectStatement<T>SqmSelectStatement. distinct(boolean distinct)SqmSelectStatement<T>SqmSelectStatement. groupBy(Expression<?>... expressions)SqmSelectStatement<T>SqmSelectStatement. groupBy(List<Expression<?>> grouping)SqmSelectStatement<T>SqmSelectStatement. having(Expression<Boolean> booleanExpression)SqmSelectStatement<T>SqmSelectStatement. having(Predicate... predicates)SqmSelectStatement<T>SqmSelectStatement. multiselect(Selection<?>... selections)SqmSelectStatement<T>SqmSelectStatement. multiselect(List<Selection<?>> selectionList)SqmSelectStatement<T>SqmSelectStatement. orderBy(Order... orders)SqmSelectStatement<T>SqmSelectStatement. orderBy(List<Order> orders)SqmSelectStatement<T>SqmSelectStatement. select(Selection<? extends T> selection)SqmSelectStatement<T>SqmSelectStatement. where(Expression<Boolean> restriction)SqmSelectStatement<T>SqmSelectStatement. where(Predicate... restrictions)
-