Package org.hibernate.query.criteria
Interface JpaCteCriteriaAttribute
-
- All Superinterfaces:
JpaCriteriaNode
,Serializable
- All Known Implementing Classes:
SqmCteTableColumn
@Incubating public interface JpaCteCriteriaAttribute extends JpaCriteriaNode
Describes the attribute of aJpaCteCriteriaType
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JpaCteCriteriaType<?>
getDeclaringType()
The declaring type.Class<?>
getJavaType()
The java type of the attribute.String
getName()
The name of the attribute.
-
-
-
Method Detail
-
getDeclaringType
JpaCteCriteriaType<?> getDeclaringType()
The declaring type.
-
getName
String getName()
The name of the attribute.
-
getJavaType
Class<?> getJavaType()
The java type of the attribute.
-
-