Uses of Interface
org.hibernate.query.sqm.tree.cte.SqmCteContainer
-
Packages that use SqmCteContainer Package Description org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.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 This package contains the classes that make up the SQM tree nodes.org.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree.org.hibernate.query.sqm.tree.delete Nodes representingdelete
statements in the SQM tree.org.hibernate.query.sqm.tree.insert Nodes representinginsert
statements in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselect
statements in the SQM tree.org.hibernate.query.sqm.tree.update Nodes representingupdate
statements in the SQM tree. -
-
Uses of SqmCteContainer in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type SqmCteContainer Modifier and Type Method Description T
SemanticQueryWalker. visitCteContainer(SqmCteContainer consumer)
-
Uses of SqmCteContainer in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type SqmCteContainer Modifier and Type Method Description Object
SqmTreePrinter. visitCteContainer(SqmCteContainer consumer)
-
Uses of SqmCteContainer in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type SqmCteContainer Modifier and Type Method Description Object
BaseSemanticQueryWalker. visitCteContainer(SqmCteContainer consumer)
-
Uses of SqmCteContainer in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type SqmCteContainer Modifier and Type Method Description CteContainer
BaseSqmToSqlAstConverter. visitCteContainer(SqmCteContainer consumer)
-
Uses of SqmCteContainer in org.hibernate.query.sqm.tree
Subinterfaces of SqmCteContainer in org.hibernate.query.sqm.tree Modifier and Type Interface Description interface
SqmDeleteOrUpdateStatement<T>
In some cases it is useful to be able to handle UPDATE or DELETE SQM trees using a single contract.interface
SqmDmlStatement<E>
Common extension of SqmStatement for DML (delete, update and insert-select) statements.Classes in org.hibernate.query.sqm.tree that implement SqmCteContainer Modifier and Type Class Description class
AbstractSqmDmlStatement<E>
class
AbstractSqmRestrictedDmlStatement<T>
-
Uses of SqmCteContainer in org.hibernate.query.sqm.tree.cte
Methods in org.hibernate.query.sqm.tree.cte that return SqmCteContainer Modifier and Type Method Description SqmCteContainer
SqmCteStatement. getCteContainer()
Constructors in org.hibernate.query.sqm.tree.cte with parameters of type SqmCteContainer 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 SqmCteContainer in org.hibernate.query.sqm.tree.delete
Classes in org.hibernate.query.sqm.tree.delete that implement SqmCteContainer Modifier and Type Class Description class
SqmDeleteStatement<T>
-
Uses of SqmCteContainer in org.hibernate.query.sqm.tree.insert
Subinterfaces of SqmCteContainer in org.hibernate.query.sqm.tree.insert Modifier and Type Interface Description interface
SqmInsertStatement<T>
The general contract for INSERT statements.Classes in org.hibernate.query.sqm.tree.insert that implement SqmCteContainer Modifier and Type Class Description class
AbstractSqmInsertStatement<T>
Convenience base class for InsertSqmStatement implementations.class
SqmInsertSelectStatement<T>
class
SqmInsertValuesStatement<T>
-
Uses of SqmCteContainer in org.hibernate.query.sqm.tree.select
Subinterfaces of SqmCteContainer in org.hibernate.query.sqm.tree.select Modifier and Type Interface Description interface
SqmSelectQuery<T>
Classes in org.hibernate.query.sqm.tree.select that implement SqmCteContainer Modifier and Type Class Description class
AbstractSqmSelectQuery<T>
class
SqmSelectStatement<T>
class
SqmSubQuery<T>
-
Uses of SqmCteContainer in org.hibernate.query.sqm.tree.update
Classes in org.hibernate.query.sqm.tree.update that implement SqmCteContainer Modifier and Type Class Description class
SqmUpdateStatement<T>
-