SortOrder.Builder

public static class SortOrder.Builder extends Object

Public Constructor Summary

Public Method Summary

SortOrder.Builder
addSortAscending(SortableMetadataField sortField)
Adds the SortableMetadataField to be used to sort the query results in ascending order of the values of the sortField.
SortOrder.Builder
addSortDescending(SortableMetadataField sortField)
Adds the SortableMetadataField to be used to sort the query results in descending order of the values of the sortField.
SortOrder

Inherited Method Summary

Public Constructors

public SortOrder.Builder ()

Public Methods

public SortOrder.Builder addSortAscending (SortableMetadataField sortField)

Adds the SortableMetadataField to be used to sort the query results in ascending order of the values of the sortField. Query results are sorted in the same order the fields are added.

Parameters
sortField the field to be used to sort the query results in ascending order, see SortableField for the list of fields that can be used to sort query results

public SortOrder.Builder addSortDescending (SortableMetadataField sortField)

Adds the SortableMetadataField to be used to sort the query results in descending order of the values of the sortField. Query results are sorted in the same order the fields are added.

Parameters
sortField the field to be used to sort the query results in descending order, see SortableField for the list of fields that can be used to sort query results

public SortOrder build ()