Class SearchHits

    • Field Detail

      • EMPTY

        public static final SearchHit[] EMPTY
      • totalHits

        public long totalHits
    • Constructor Detail

      • SearchHits

        public SearchHits​(SearchHit[] hits,
                          long totalHits,
                          float maxScore)
      • SearchHits

        public SearchHits​(SearchHit[] hits,
                          long totalHits,
                          float maxScore,
                          @Nullable
                          org.apache.lucene.search.SortField[] sortFields,
                          @Nullable
                          java.lang.String collapseField,
                          @Nullable
                          java.lang.Object[] collapseValues)
    • Method Detail

      • getTotalHits

        public long getTotalHits()
        The total number of hits that matches the search request.
      • getMaxScore

        public float getMaxScore()
        The maximum score of this query.
      • getHits

        public SearchHit[] getHits()
        The hits of the search request (based on the search type, and from / size provided).
      • getAt

        public SearchHit getAt​(int position)
        Return the hit as the provided position.
      • getSortFields

        @Nullable
        public org.apache.lucene.search.SortField[] getSortFields()
        In case documents were sorted by field(s), returns information about such field(s), null otherwise
        See Also:
        SortField
      • getCollapseField

        @Nullable
        public java.lang.String getCollapseField()
        In case field collapsing was performed, returns the field used for field collapsing, null otherwise
      • getCollapseValues

        @Nullable
        public java.lang.Object[] getCollapseValues()
        In case field collapsing was performed, returns the values of the field that field collapsing was performed on, null otherwise
      • iterator

        public java.util.Iterator<SearchHit> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<SearchHit>
      • fromXContent

        public static SearchHits fromXContent​(XContentParser parser)
                                       throws java.io.IOException
        Throws:
        java.io.IOException
      • readSearchHits

        public static SearchHits readSearchHits​(StreamInput in)
                                         throws java.io.IOException
        Throws:
        java.io.IOException
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object