Uses of Interface
org.hibernate.sql.ast.tree.cte.CteObject
-
Packages that use CteObject Package Description org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree Package defining the SQL AST.org.hibernate.sql.ast.tree.cte Support for common table expressions (CTE) in a SQL tree. -
-
Uses of CteObject in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type CteObject Modifier and Type Method Description protected void
AbstractSqlAstTranslator. visitCteObject(CteObject cteObject)
-
Uses of CteObject in org.hibernate.sql.ast.tree
Methods in org.hibernate.sql.ast.tree that return CteObject Modifier and Type Method Description CteObject
AbstractStatement. getCteObject(String cteObjectName)
Methods in org.hibernate.sql.ast.tree that return types with arguments of type CteObject Modifier and Type Method Description Map<String,CteObject>
AbstractStatement. getCteObjects()
Methods in org.hibernate.sql.ast.tree with parameters of type CteObject Modifier and Type Method Description void
AbstractStatement. addCteObject(CteObject cteObject)
-
Uses of CteObject in org.hibernate.sql.ast.tree.cte
Subinterfaces of CteObject in org.hibernate.sql.ast.tree.cte Modifier and Type Interface Description interface
SelfRenderingCteObject
A self rendering object that is part of a WITH clause, like a function.Methods in org.hibernate.sql.ast.tree.cte that return CteObject Modifier and Type Method Description CteObject
CteContainer. getCteObject(String cteObjectName)
Methods in org.hibernate.sql.ast.tree.cte that return types with arguments of type CteObject Modifier and Type Method Description Map<String,CteObject>
CteContainer. getCteObjects()
Methods in org.hibernate.sql.ast.tree.cte with parameters of type CteObject Modifier and Type Method Description void
CteContainer. addCteObject(CteObject cteObject)
-