Interface JpaCteCriteriaType<T>
- All Superinterfaces:
JpaCriteriaNode, Serializable
- All Known Implementing Classes:
SqmCteTable
A CTE (common table expression) criteria type.
-
Method Summary
Modifier and TypeMethodDescription@Nullable JpaCteCriteriaAttributegetAttribute(String name) Returns the found attribute or null.The attributes of the CTE type.@Nullable StringgetName()The name under which this CTE is registered.getType()The domain type of the CTE.
-
Method Details
-
getName
@Nullable 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.
-