Package org.elasticsearch.search
Class SearchHits
java.lang.Object
org.elasticsearch.search.SearchHits
- All Implemented Interfaces:
java.lang.Iterable<SearchHit>,Writeable,ToXContent,ToXContentFragment
public final class SearchHits extends java.lang.Object implements Writeable, ToXContentFragment, java.lang.Iterable<SearchHit>
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSearchHits.FieldsNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description SearchHits(StreamInput in)SearchHits(SearchHit[] hits, org.apache.lucene.search.TotalHits totalHits, float maxScore)SearchHits(SearchHit[] hits, org.apache.lucene.search.TotalHits totalHits, float maxScore, org.apache.lucene.search.SortField[] sortFields, java.lang.String collapseField, java.lang.Object[] collapseValues) -
Method Summary
Modifier and Type Method Description static SearchHitsempty()static SearchHitsempty(boolean withTotalHits)booleanequals(java.lang.Object obj)static SearchHitsfromXContent(XContentParser parser)SearchHitgetAt(int position)Return the hit as the provided position.java.lang.StringgetCollapseField()In case field collapsing was performed, returns the field used for field collapsing, null otherwisejava.lang.Object[]getCollapseValues()In case field collapsing was performed, returns the values of the field that field collapsing was performed on, null otherwiseSearchHit[]getHits()The hits of the search request (based on the search type, and from / size provided).floatgetMaxScore()The maximum score of this query.org.apache.lucene.search.SortField[]getSortFields()In case documents were sorted by field(s), returns information about such field(s), null otherwiseorg.apache.lucene.search.TotalHitsgetTotalHits()The total number of hits for the query or null if the tracking of total hits is disabled in the request.inthashCode()java.util.Iterator<SearchHit>iterator()static org.apache.lucene.search.TotalHitsparseTotalHitsFragment(XContentParser parser)XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Field Details
-
Constructor Details
-
SearchHits
-
SearchHits
-
SearchHits
- Throws:
java.io.IOException
-
-
Method Details
-
empty
-
empty
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
getTotalHits
The total number of hits for the query or null if the tracking of total hits is disabled in the request. -
getMaxScore
public float getMaxScore()The maximum score of this query. -
getHits
The hits of the search request (based on the search type, and from / size provided). -
getAt
Return the hit as the provided position. -
getSortFields
In case documents were sorted by field(s), returns information about such field(s), null otherwise- See Also:
SortField
-
getCollapseField
In case field collapsing was performed, returns the field used for field collapsing, null otherwise -
getCollapseValues
In case field collapsing was performed, returns the values of the field that field collapsing was performed on, null otherwise -
iterator
- Specified by:
iteratorin interfacejava.lang.Iterable<SearchHit>
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
parseTotalHitsFragment
public static org.apache.lucene.search.TotalHits parseTotalHitsFragment(XContentParser parser) throws java.io.IOException- Throws:
java.io.IOException
-