Uses of Record Class
jakarta.data.Sort
Package
Description
Jakarta Data provides an API that simplifies data access.
A static metamodel for entities that are used in Jakarta Data repositories.
-
Uses of Sort in jakarta.data
Modifier and TypeMethodDescriptionstatic <T> Sort<T>
Create aSort
instance withascending direction
that does not request case insensitive ordering.static <T> Sort<T>
Sort.ascIgnoreCase
(String property) Create aSort
instance withascending direction
and case insensitive ordering.static <T> Sort<T>
Create aSort
instance withdescending direction
that does not request case insensitive ordering.static <T> Sort<T>
Sort.descIgnoreCase
(String property) Create aSort
instance withdescending direction
and case insensitive ordering.static <T> Sort<T>
Create aSort
instanceModifier and TypeMethodDescriptionOrder.iterator()
Returns an iterator that follows the order of precedence for theSort
criteria, from highest precedence to lowest.Order.sorts()
The instances ofSort
belonging to thisOrder
. -
Uses of Sort in jakarta.data.metamodel
Modifier and TypeMethodDescriptionSortableAttribute.asc()
Obtain a request for an ascendingSort
based on the entity attribute.TextAttribute.ascIgnoreCase()
Obtain a request for an ascending, case insensitiveSort
based on the entity attribute.SortableAttribute.desc()
Obtain a request for a descendingSort
based on the entity attribute.TextAttribute.descIgnoreCase()
Obtain a request for a descending, case insensitiveSort
based on the entity attribute. -
Uses of Sort in jakarta.data.metamodel.impl