Class SearchResults
- java.lang.Object
-
- org.apache.lucene.luke.models.search.SearchResults
-
public final class SearchResults extends Object
Holder for a search result page.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSearchResults.DocHolder for a hit.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SearchResults.Doc>getHits()Returns the documents of the current page.intgetOffset()Returns the offset of the current page.TotalHitsgetTotalHits()Returns the total number of hits for this query.intsize()Returns the size of the current page.
-
-
-
Method Detail
-
getTotalHits
public TotalHits getTotalHits()
Returns the total number of hits for this query.
-
getOffset
public int getOffset()
Returns the offset of the current page.
-
getHits
public List<SearchResults.Doc> getHits()
Returns the documents of the current page.
-
size
public int size()
Returns the size of the current page.
-
-