Package org.hibernate.query.criteria
Interface JpaCteCriteriaType<T>
- All Superinterfaces:
JpaCriteriaNode,Serializable
- All Known Implementing Classes:
SqmCteTable
A CTE (common table expression) criteria type.
-
Method Summary
Modifier and TypeMethodDescriptiongetAttribute(String name) Returns the found attribute or null.The attributes of the CTE type.getName()The name under which this CTE is registered.getType()The domain type of the CTE.
-
Method Details
-
getName
String getName()The name under which this CTE is registered. -
getType
DomainType<T> getType()The domain type of the CTE. -
getAttributes
List<JpaCteCriteriaAttribute> getAttributes()The attributes of the CTE type. -
getAttribute
Returns the found attribute or null.
-