Uses of Interface
com.atlassian.confluence.search.v2.SearchSort
-
Packages that use SearchSort Package Description com.atlassian.confluence.impl.search.v2.mappers com.atlassian.confluence.internal.search.v2.lucene Provides a Lucene-backed implementation of theSearchManager
.com.atlassian.confluence.macro.params com.atlassian.confluence.plugins.contentproperty.search.fields com.atlassian.confluence.plugins.contentproperty.search.query com.atlassian.confluence.search.service com.atlassian.confluence.search.v2 Provides an extensible, flexible search API.com.atlassian.confluence.search.v2.sort -
-
Uses of SearchSort in com.atlassian.confluence.impl.search.v2.mappers
Methods in com.atlassian.confluence.impl.search.v2.mappers with parameters of type SearchSort Modifier and Type Method Description org.apache.lucene.search.Sort
CaseInsensitiveSortMapper. convertToLuceneSort(SearchSort searchSort)
Deprecated.Converts a search sort into a lucene sort.org.apache.lucene.search.Sort
DefaultSortMapper. convertToLuceneSort(SearchSort searchSort)
Deprecated.Converts a search sort into a lucene sort.org.apache.lucene.search.Sort
NoOpSortMapper. convertToLuceneSort(SearchSort searchSort)
-
Uses of SearchSort in com.atlassian.confluence.internal.search.v2.lucene
Classes in com.atlassian.confluence.internal.search.v2.lucene with type parameters of type SearchSort Modifier and Type Interface Description interface
LuceneSortMapper<T extends SearchSort>
Deprecated.since 7.0 useexpand()
instead.Methods in com.atlassian.confluence.internal.search.v2.lucene with parameters of type SearchSort Modifier and Type Method Description org.apache.lucene.search.Sort
DelegatingLuceneSearchMapper. convertToLuceneSort(SearchSort searchSort)
Converts a search sort into a lucene sort. -
Uses of SearchSort in com.atlassian.confluence.macro.params
Methods in com.atlassian.confluence.macro.params that return SearchSort Modifier and Type Method Description protected SearchSort
SearchSortParameter. findObject(String paramValue, MacroExecutionContext ctx)
-
Uses of SearchSort in com.atlassian.confluence.plugins.contentproperty.search.fields
Methods in com.atlassian.confluence.plugins.contentproperty.search.fields that return SearchSort Modifier and Type Method Description protected SearchSort
DateTimeContentPropertyAliasFieldHandler. getSearchSort(SearchSort.Order order)
protected SearchSort
NumericContentPropertyAliasFieldHandler. getSearchSort(SearchSort.Order order)
-
Uses of SearchSort in com.atlassian.confluence.plugins.contentproperty.search.query
Methods in com.atlassian.confluence.plugins.contentproperty.search.query that return SearchSort Modifier and Type Method Description SearchSort
ContentPropertySearchQueryFactory. buildContentPropertySearchSort(ContentPropertySchemaField schemaField, SearchSort.Type type, SearchSort.Order order)
-
Uses of SearchSort in com.atlassian.confluence.search.service
Methods in com.atlassian.confluence.search.service that return SearchSort Modifier and Type Method Description SearchSort
SearchQueryParameters. getSort()
@Nullable SearchSort
UserSearchQueryParameters. getSort()
Methods in com.atlassian.confluence.search.service with parameters of type SearchSort Modifier and Type Method Description void
SearchQueryParameters. setSort(SearchSort sort)
UserSearchQueryParameters.Builder
UserSearchQueryParameters.Builder. sort(SearchSort sort)
-
Uses of SearchSort in com.atlassian.confluence.search.v2
Fields in com.atlassian.confluence.search.v2 declared as SearchSort Modifier and Type Field Description protected SearchSort
AbstractSearch. sort
Methods in com.atlassian.confluence.search.v2 that return SearchSort Modifier and Type Method Description default SearchSort
SearchSort. expand()
SearchSort
AbstractSearch. getSort()
Gets the sort component of the searchSearchSort
DefaultSearchWithToken. getSort()
SearchSort
ISearch. getSort()
Constructors in com.atlassian.confluence.search.v2 with parameters of type SearchSort Constructor Description AbstractSearch(EnumSet<SearchIndex> indexes, @NonNull SearchQuery query, SearchSort sort)
Constructs an abstract representation of a search to be performed.AbstractSearch(EnumSet<SearchIndex> indexes, @NonNull SearchQuery query, SearchSort sort, int startOffset, int limit)
Constructs an abstract representation of a search to be performed.ChangesSearch(@NonNull SearchQuery query, SearchSort sort)
Constructs a search against change information.ChangesSearch(@NonNull SearchQuery query, SearchSort sort, int startOffset, int limit)
Constructs a search against change information.ContentSearch(SearchQuery query, SearchSort sort)
Constructs a search against Confluence content.ContentSearch(SearchQuery query, SearchSort sort, int startOffset, int limit)
Constructs a search against Confluence content.CustomSearch(@NonNull SearchQuery query, SearchSort sort)
Constructs a search against custom indexes.CustomSearch(@NonNull SearchQuery query, SearchSort sort, int startOffset, int limit)
Constructs a search against custom indexes.DefaultSearch(EnumSet<SearchIndex> indexes, SearchQuery query, SearchSort sort, int startOffset, int limit)
-
Uses of SearchSort in com.atlassian.confluence.search.v2.sort
Classes in com.atlassian.confluence.search.v2.sort that implement SearchSort Modifier and Type Class Description class
AbstractSort
Abstract superclass for simple sort types that just sort in a particular direction on some field.class
ContentIdSort
Sort content by its id that is stored as part of the handle field in Lucene index.class
CreatedSort
Order search results by time createdclass
FavouriteSort
Order search results by favourite date.class
FieldSort
Sort based on value of a field.class
FilenameSort
Sort based on an attachment's filename.class
FilesizeSort
class
FullnameSort
Sort by a user's full nameclass
LowercaseFieldSort
Sort based on lower case value of a keyword field.class
ModifiedSort
Order search results by time last modifiedclass
MultiSearchSort
This composite SearchSort that allows sort by multiple fields.class
RelevanceSort
Order search results most relevant first.class
TitleSort
Order search results by titleclass
UserAttributeSort
A base user sort that allows userkey fields to be sorted on either UserKey, Username, Full name or Email.Methods in com.atlassian.confluence.search.v2.sort that return SearchSort Modifier and Type Method Description SearchSort
CreatedSort. expand()
SearchSort
FilenameSort. expand()
SearchSort
FilesizeSort. expand()
SearchSort
FullnameSort. expand()
SearchSort
ModifiedSort. expand()
SearchSort
TitleSort. expand()
Methods in com.atlassian.confluence.search.v2.sort that return types with arguments of type SearchSort Modifier and Type Method Description List<SearchSort>
MultiSearchSort. getSearchSorts()
Constructor parameters in com.atlassian.confluence.search.v2.sort with type arguments of type SearchSort Constructor Description MultiSearchSort(Iterable<SearchSort> searchSorts)
-