Package de.otto.flummi.response
Interface SearchHits
-
- All Known Implementing Classes:
ScrollingSearchHits,SimpleSearchHits
public interface SearchHits extends Iterable<SearchHit>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidforEach(Consumer<? super SearchHit> action)FloatgetMaxScore()longgetTotalHits()Iterator<SearchHit>iterator()Spliterator<SearchHit>spliterator()Stream<SearchHit>stream()
-
-
-
Method Detail
-
getTotalHits
long getTotalHits()
-
getMaxScore
Float getMaxScore()
- Returns:
- The maximum score of this query.
-
spliterator
Spliterator<SearchHit> spliterator()
- Specified by:
spliteratorin interfaceIterable<SearchHit>
-
-