Uses of Interface
jakarta.nosql.Sort
-
Packages that use Sort Package Description jakarta.nosql Jakarta NoSQL communication is a flexible and extensible API to connect NoSQL databases.jakarta.nosql.column This package contains all objects to use a Column Family API.jakarta.nosql.document This package contains all objects to use a Document Collection.jakarta.nosql.mapping This package contains all comuns API to artemis.jakarta.nosql.query This package domain has the representation of the query String in Classes. -
-
Uses of Sort in jakarta.nosql
Methods in jakarta.nosql that return Sort Modifier and Type Method Description static Sort
Sort. asc(String name)
Creates a new Sort of the typeSortType.ASC
static Sort
Sort. desc(String name)
Creates a new Sort of the typeSortType.DESC
static Sort
Sort. of(String name, SortType type)
Creates a wew Sort instance to be used in a NoSQL query. -
Uses of Sort in jakarta.nosql.column
Methods in jakarta.nosql.column that return types with arguments of type Sort Modifier and Type Method Description List<Sort>
ColumnQuery. getSorts()
The sorts that contains in thisColumnQuery
The implementation might ignore this option. -
Uses of Sort in jakarta.nosql.document
Methods in jakarta.nosql.document that return types with arguments of type Sort Modifier and Type Method Description List<Sort>
DocumentQuery. getSorts()
The sorts that contains in thisDocumentQuery
The implementation might ignore this option. -
Uses of Sort in jakarta.nosql.mapping
Methods in jakarta.nosql.mapping that return types with arguments of type Sort Modifier and Type Method Description List<Sort>
Sorts. getSorts()
Methods in jakarta.nosql.mapping with parameters of type Sort Modifier and Type Method Description Sorts
Sorts. add(Sort sort)
Appends aSort
instanceSorts
Sorts. remove(Sort sort)
-
Uses of Sort in jakarta.nosql.query
Methods in jakarta.nosql.query that return types with arguments of type Sort Modifier and Type Method Description List<Sort>
SelectQuery. getOrderBy()
The list of orders, it is used to sort the result-set in ascending or descending order.
-