Uses of Interface
org.hibernate.query.criteria.JpaCteContainer
-
Packages that use JpaCteContainer Package Description org.hibernate.query.criteria Support for JPA criteria queries.org.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 JpaCteContainer in org.hibernate.query.criteria
Subinterfaces of JpaCteContainer in org.hibernate.query.criteria Modifier and Type Interface Description interface
JpaCriteriaDelete<T>
interface
JpaCriteriaInsertSelect<T>
A representation of SqmInsertSelectStatement at theorg.hibernate.query.criteria
level, even though JPA does not define support for insert-select criteria.interface
JpaCriteriaQuery<T>
Extension of the JPACriteriaQuery
interface
JpaCriteriaUpdate<T>
interface
JpaManipulationCriteria<E>
interface
JpaQueryableCriteria<T>
Common contract for the forms of criteria that are "queryable" - can be converted into aQuery
.interface
JpaSubQuery<T>
Methods in org.hibernate.query.criteria that return JpaCteContainer Modifier and Type Method Description JpaCteContainer
JpaCteCriteria. getCteContainer()
The container within this CTE is registered. -
Uses of JpaCteContainer in org.hibernate.query.sqm.tree
Subinterfaces of JpaCteContainer 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.interface
SqmStatement<T>
The basic SQM statement contract for top-level statementsClasses in org.hibernate.query.sqm.tree that implement JpaCteContainer Modifier and Type Class Description class
AbstractSqmDmlStatement<E>
class
AbstractSqmRestrictedDmlStatement<T>
class
AbstractSqmStatement<T>
-
Uses of JpaCteContainer in org.hibernate.query.sqm.tree.cte
Subinterfaces of JpaCteContainer in org.hibernate.query.sqm.tree.cte Modifier and Type Interface Description interface
SqmCteContainer
-
Uses of JpaCteContainer in org.hibernate.query.sqm.tree.delete
Classes in org.hibernate.query.sqm.tree.delete that implement JpaCteContainer Modifier and Type Class Description class
SqmDeleteStatement<T>
-
Uses of JpaCteContainer in org.hibernate.query.sqm.tree.insert
Subinterfaces of JpaCteContainer 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 JpaCteContainer Modifier and Type Class Description class
AbstractSqmInsertStatement<T>
Convenience base class for InsertSqmStatement implementations.class
SqmInsertSelectStatement<T>
class
SqmInsertValuesStatement<T>
-
Uses of JpaCteContainer in org.hibernate.query.sqm.tree.select
Subinterfaces of JpaCteContainer 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 JpaCteContainer Modifier and Type Class Description class
AbstractSqmSelectQuery<T>
class
SqmSelectStatement<T>
class
SqmSubQuery<T>
-
Uses of JpaCteContainer in org.hibernate.query.sqm.tree.update
Classes in org.hibernate.query.sqm.tree.update that implement JpaCteContainer Modifier and Type Class Description class
SqmUpdateStatement<T>
-