Package org.hibernate.query.criteria
Interface JpaCteCriteriaType<T>
-
- All Superinterfaces:
JpaCriteriaNode
,Serializable
- All Known Implementing Classes:
SqmCteTable
@Incubating public interface JpaCteCriteriaType<T> extends JpaCriteriaNode
A CTE (common table expression) criteria type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JpaCteCriteriaAttribute
getAttribute(String name)
Returns the found attribute or null.List<JpaCteCriteriaAttribute>
getAttributes()
The attributes of the CTE type.String
getName()
The name under which this CTE is registered.DomainType<T>
getType()
The domain type of the CTE.
-
-
-
Method Detail
-
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
JpaCteCriteriaAttribute getAttribute(String name)
Returns the found attribute or null.
-
-