T
- Type of valuepublic static interface QueryBuilder.Sorting<T> extends QueryBuilder<T>
This interface is available as a preview of functionality that will be added to the supported public API in a future release. While it is in the preview phase, it is subject to change or removal without deprecation or notice. Although notice of change is not guaranteed, we will try to let developers know of major changes through announcements in release notes.
Restricts path after Sorting.
QueryBuilder.Aggregating<T>, QueryBuilder.Filtering<T>, QueryBuilder.FilteringCriteria<T>, QueryBuilder.Grouping<T>, QueryBuilder.Paging<T>, QueryBuilder.Selecting<T>, QueryBuilder.Sorting<T>
Modifier and Type | Method and Description |
---|---|
QueryBuilder<T> |
sortBy(com.google.common.collect.ImmutableList<ReadOnlySortInfo> sortInfos)
Defines the query's sorting information
|
QueryBuilder<T> |
sortBy(java.util.List<SortInfo> sortInfos)
Defines the query's sorting information
|
QueryBuilder<T> |
sortBy(ReadOnlySortInfo... sortInfos)
Defines the query's sorting information
|
QueryBuilder<T> |
sortBy(SortInfo... sortInfos)
Defines the query's sorting information
|
build
QueryBuilder<T> sortBy(SortInfo... sortInfos)
sortInfos
- the array of SortInfo
which the query is going to use to determine the order
of the result data.QueryBuilder
which can produce a Query
instance.QueryBuilder<T> sortBy(java.util.List<SortInfo> sortInfos)
sortInfos
- the list of SortInfo
which the query is going to use to determine the order
of the result data.QueryBuilder
which can produce a Query
instance.QueryBuilder<T> sortBy(ReadOnlySortInfo... sortInfos)
sortInfos
- the array of ReadOnlySortInfo
which the query is going to use to determine the order
of the result data.QueryBuilder
which can produce a Query
instance.QueryBuilder<T> sortBy(com.google.common.collect.ImmutableList<ReadOnlySortInfo> sortInfos)
sortInfos
- the list of ReadOnlySortInfo
which the query is going to use to determine the order
of the result data.QueryBuilder
which can produce a Query
instance.Copyright © 2003-2024 Appian Corporation. All Rights Reserved.