Uses of Interface
org.hibernate.query.criteria.JpaCteCriteriaAttribute
-
Packages that use JpaCteCriteriaAttribute Package Description org.hibernate.query.criteria Support for JPA criteria queries.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree. -
-
Uses of JpaCteCriteriaAttribute in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaCteCriteriaAttribute Modifier and Type Method Description JpaCteCriteriaAttribute
JpaCteCriteriaType. getAttribute(String name)
Returns the found attribute or null.JpaCteCriteriaAttribute
JpaSearchOrder. getAttribute()
Return the CTE attribute that is used for ordering.Methods in org.hibernate.query.criteria that return types with arguments of type JpaCteCriteriaAttribute Modifier and Type Method Description List<JpaCteCriteriaAttribute>
JpaCteCriteriaType. getAttributes()
The attributes of the CTE type.List<JpaCteCriteriaAttribute>
JpaCteCriteria. getCycleAttributes()
The attributes to use for cycle detection.Methods in org.hibernate.query.criteria with parameters of type JpaCteCriteriaAttribute Modifier and Type Method Description JpaSearchOrder
HibernateCriteriaBuilder. asc(JpaCteCriteriaAttribute x)
Create a search ordering by the ascending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
Create a search ordering by the ascending value of the CTE attribute.default void
JpaCteCriteria. cycle(String cycleMarkAttributeName, JpaCteCriteriaAttribute... cycleColumns)
default <X> void
JpaCteCriteria. cycle(String cycleMarkAttributeName, X cycleValue, X noCycleValue, JpaCteCriteriaAttribute... cycleColumns)
default void
JpaCteCriteria. cycleUsing(String cycleMarkAttributeName, String cyclePathAttributeName, JpaCteCriteriaAttribute... cycleColumns)
default <X> void
JpaCteCriteria. cycleUsing(String cycleMarkAttributeName, String cyclePathAttributeName, X cycleValue, X noCycleValue, JpaCteCriteriaAttribute... cycleColumns)
JpaSearchOrder
HibernateCriteriaBuilder. desc(JpaCteCriteriaAttribute x)
Create a search ordering by the descending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
Create a search ordering by the descending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute)
Create a search ordering based on the ascending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute, SortOrder sortOrder)
Create a search ordering based on the sort order of the value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute, SortOrder sortOrder, NullPrecedence nullPrecedence)
Create a search ordering based on the sort order and null precedence of the value of the CTE attribute.Method parameters in org.hibernate.query.criteria with type arguments of type JpaCteCriteriaAttribute Modifier and Type Method Description default void
JpaCteCriteria. cycle(String cycleMarkAttributeName, List<JpaCteCriteriaAttribute> cycleColumns)
default <X> void
JpaCteCriteria. cycle(String cycleMarkAttributeName, X cycleValue, X noCycleValue, List<JpaCteCriteriaAttribute> cycleColumns)
default void
JpaCteCriteria. cycleUsing(String cycleMarkAttributeName, String cyclePathAttributeName, List<JpaCteCriteriaAttribute> cycleColumns)
<X> void
JpaCteCriteria. cycleUsing(String cycleMarkAttributeName, String cyclePathAttributeName, X cycleValue, X noCycleValue, List<JpaCteCriteriaAttribute> cycleColumns)
-
Uses of JpaCteCriteriaAttribute in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi with parameters of type JpaCteCriteriaAttribute Modifier and Type Method Description JpaSearchOrder
HibernateCriteriaBuilderDelegate. asc(JpaCteCriteriaAttribute x)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. desc(JpaCteCriteriaAttribute x)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute, SortOrder sortOrder)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of JpaCteCriteriaAttribute in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type JpaCteCriteriaAttribute Modifier and Type Method Description JpaSearchOrder
SqmCriteriaNodeBuilder. asc(JpaCteCriteriaAttribute x)
JpaSearchOrder
SqmCriteriaNodeBuilder. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
SqmCriteriaNodeBuilder. desc(JpaCteCriteriaAttribute x)
JpaSearchOrder
SqmCriteriaNodeBuilder. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression, SortOrder sortOrder)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of JpaCteCriteriaAttribute in org.hibernate.query.sqm.sql
Method parameters in org.hibernate.query.sqm.sql with type arguments of type JpaCteCriteriaAttribute Modifier and Type Method Description protected List<CteColumn>
BaseSqmToSqlAstConverter. visitCycleColumns(CteTable cteTable, List<JpaCteCriteriaAttribute> cycleColumns)
-
Uses of JpaCteCriteriaAttribute in org.hibernate.query.sqm.tree.cte
Classes in org.hibernate.query.sqm.tree.cte that implement JpaCteCriteriaAttribute Modifier and Type Class Description class
SqmCteTableColumn
Methods in org.hibernate.query.sqm.tree.cte that return JpaCteCriteriaAttribute Modifier and Type Method Description JpaCteCriteriaAttribute
SqmCteTable. getAttribute(String name)
JpaCteCriteriaAttribute
SqmSearchClauseSpecification. getAttribute()
Methods in org.hibernate.query.sqm.tree.cte that return types with arguments of type JpaCteCriteriaAttribute Modifier and Type Method Description List<JpaCteCriteriaAttribute>
SqmCteTable. getAttributes()
List<JpaCteCriteriaAttribute>
SqmCteStatement. getCycleAttributes()
Method parameters in org.hibernate.query.sqm.tree.cte with type arguments of type JpaCteCriteriaAttribute Modifier and Type Method Description <X> void
SqmCteStatement. cycleUsing(String cycleMarkAttributeName, String cyclePathAttributeName, X cycleValue, X noCycleValue, List<JpaCteCriteriaAttribute> cycleAttributes)
-