Package org.elasticsearch.search.sort
Class SortBuilder<T extends SortBuilder<T>>
- java.lang.Object
-
- org.elasticsearch.search.sort.SortBuilder<T>
-
- All Implemented Interfaces:
NamedWriteable
,Writeable
,ToXContent
,ToXContentObject
,Rewriteable<SortBuilder<?>>
- Direct Known Subclasses:
FieldSortBuilder
,GeoDistanceSortBuilder
,ScoreSortBuilder
,ScriptSortBuilder
public abstract class SortBuilder<T extends SortBuilder<T>> extends java.lang.Object implements NamedWriteable, ToXContentObject, Rewriteable<SortBuilder<?>>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
Fields Modifier and Type Field Description static ParseField
NESTED_FILTER_FIELD
static ParseField
NESTED_PATH_FIELD
protected SortOrder
order
static ParseField
ORDER_FIELD
-
Fields inherited from interface org.elasticsearch.index.query.Rewriteable
MAX_REWRITE_ROUNDS
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description SortBuilder()
-
Method Summary
Modifier and Type Method Description protected abstract SortFieldAndFormat
build(QueryShardContext context)
Create a @linkSortFieldAndFormat
from this builder.static java.util.Optional<SortAndFormats>
buildSort(java.util.List<SortBuilder<?>> sortBuilders, QueryShardContext context)
static java.util.List<SortBuilder<?>>
fromXContent(XContentParser parser)
SortOrder
order()
Return theSortOrder
used for thisSortBuilder
.T
order(SortOrder order)
Set the order of sorting.protected static QueryBuilder
parseNestedFilter(XContentParser parser)
protected static IndexFieldData.XFieldComparatorSource.Nested
resolveNested(QueryShardContext context, java.lang.String nestedPath, QueryBuilder nestedFilter)
protected static IndexFieldData.XFieldComparatorSource.Nested
resolveNested(QueryShardContext context, NestedSortBuilder nestedSort)
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.io.stream.NamedWriteable
getWriteableName
-
Methods inherited from interface org.elasticsearch.index.query.Rewriteable
rewrite
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
order
protected SortOrder order
-
ORDER_FIELD
public static final ParseField ORDER_FIELD
-
NESTED_FILTER_FIELD
public static final ParseField NESTED_FILTER_FIELD
-
NESTED_PATH_FIELD
public static final ParseField NESTED_PATH_FIELD
-
-
Method Detail
-
build
protected abstract SortFieldAndFormat build(QueryShardContext context) throws java.io.IOException
Create a @linkSortFieldAndFormat
from this builder.- Throws:
java.io.IOException
-
order
public SortOrder order()
Return theSortOrder
used for thisSortBuilder
.
-
fromXContent
public static java.util.List<SortBuilder<?>> fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
buildSort
public static java.util.Optional<SortAndFormats> buildSort(java.util.List<SortBuilder<?>> sortBuilders, QueryShardContext context) throws java.io.IOException
- Throws:
java.io.IOException
-
resolveNested
protected static IndexFieldData.XFieldComparatorSource.Nested resolveNested(QueryShardContext context, java.lang.String nestedPath, QueryBuilder nestedFilter) throws java.io.IOException
- Throws:
java.io.IOException
-
resolveNested
protected static IndexFieldData.XFieldComparatorSource.Nested resolveNested(QueryShardContext context, NestedSortBuilder nestedSort) throws java.io.IOException
- Throws:
java.io.IOException
-
parseNestedFilter
protected static QueryBuilder parseNestedFilter(XContentParser parser)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-