Uses of Class
com.attivio.sdk.search.Sort.SortOrder
-
Packages that use Sort.SortOrder Package Description com.attivio.sdk.search com.attivio.sdk.search.facet Copyright 2019 Attivio Inc., All rights reserved.com.attivio.util.parser -
-
Uses of Sort.SortOrder in com.attivio.sdk.search
Fields in com.attivio.sdk.search declared as Sort.SortOrder Modifier and Type Field Description static Sort.SortOrder
Sort. ASC
Ascending Sort Order.static Sort.SortOrder
Sort. DEFAULT_ORDER
Default Sort Order.static Sort.SortOrder
Sort. DESC
Descending Sort Order.protected Sort.SortOrder
Sort. order
The sort orderMethods in com.attivio.sdk.search that return Sort.SortOrder Modifier and Type Method Description static Sort.SortOrder
Sort.SortOrder. fromExternal(java.lang.String value)
Converts an external value to a type value.Sort.SortOrder
Sort. getOrder()
Get the order to sort by.static Sort.SortOrder
Sort.SortOrder. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Sort.SortOrder[]
Sort.SortOrder. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.attivio.sdk.search with parameters of type Sort.SortOrder Modifier and Type Method Description void
QueryRequest. addSort(FieldExpression field, Sort.SortOrder order)
void
QueryRequest. addSort(java.lang.String field, Sort.SortOrder order)
void
Sort. setOrder(Sort.SortOrder value)
Set the order to sort by.void
FieldCollapse. setSort(java.lang.String field, Sort.SortOrder order)
Set the field to sort rows in a group.Constructors in com.attivio.sdk.search with parameters of type Sort.SortOrder Constructor Description Sort(FieldExpression field, Sort.SortOrder order)
Sort(FieldExpression field, Sort.SortOrder order, Sort.NullSortOrder nullOrder)
Sort(java.lang.String field, Sort.SortOrder order)
Sort by fieldname
according toorder
.Sort(java.lang.String field, Sort.SortOrder order, Sort.NullSortOrder nullOrder)
Sort byfield
according toorder
. -
Uses of Sort.SortOrder in com.attivio.sdk.search.facet
Fields in com.attivio.sdk.search.facet declared as Sort.SortOrder Modifier and Type Field Description static Sort.SortOrder
FacetRequest. DEFAULT_PRIMARY_SORT
Default primary Sortstatic Sort.SortOrder
FacetRequest. DEFAULT_SECONDARY_SORT
Default secondary SortMethods in com.attivio.sdk.search.facet that return Sort.SortOrder Modifier and Type Method Description Sort.SortOrder
FacetRequest. getPrimarySortOrder()
Gets the primary sort order for sorting buckets.Sort.SortOrder
FacetRequest. getSecondarySortOrder()
Gets the secondary sort order for sorting buckets.Methods in com.attivio.sdk.search.facet with parameters of type Sort.SortOrder Modifier and Type Method Description void
FacetRequest. setPrimarySortOrder(Sort.SortOrder order)
Sets the primary sort order for sorting buckets.void
FacetRequest. setSecondarySortOrder(Sort.SortOrder order)
Sets the secondary sort order for sorting buckets.void
FacetRequest. setSortOrder(FacetRequest.SortBy sort, Sort.SortOrder order)
Sets wether to sort by bucket count or bucket label.void
FacetRequest. setSortOrder(FacetRequest.SortBy sort, Sort.SortOrder primary, Sort.SortOrder secondary)
Sets the sort order and sort-by's. -
Uses of Sort.SortOrder in com.attivio.util.parser
Methods in com.attivio.util.parser that return Sort.SortOrder Modifier and Type Method Description Sort.SortOrder
FacetRequestFactory. getSecondarySortOrder()
Secondary sort order for facet buckets.Sort.SortOrder
FacetRequestFactory. getSortOrder()
Primary sort order for facet buckets.Methods in com.attivio.util.parser with parameters of type Sort.SortOrder Modifier and Type Method Description void
FacetRequestFactory. setSecondarySortOrder(Sort.SortOrder value)
void
FacetRequestFactory. setSortOrder(Sort.SortOrder value)
-