Interface LuceneSearchResult<H>
-
- All Superinterfaces:
SearchResult<H>
public interface LuceneSearchResult<H> extends SearchResult<H>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default TopDocsgetTopDocs()Deprecated.UsetopDocs()instead.TopDocstopDocs()-
Methods inherited from interface org.hibernate.search.engine.search.query.SearchResult
aggregation, getAggregation, getHits, getTook, getTotalHitCount, hits, isTimedOut, timedOut, took, total, totalHitCount
-
-
-
-
Method Detail
-
topDocs
TopDocs topDocs()
- Returns:
- the Lucene topDocs produced by the query.
For the common use cases there is no meaning for using it. It might be used by an advanced user who needs to merge different query result, using the merge low level Lucene API, such as
TopDocs.merge(int, TopDocs[]).
-
getTopDocs
@Deprecated default TopDocs getTopDocs()
Deprecated.UsetopDocs()instead.- Returns:
- the Lucene topDocs produced by the query.
For the common use cases there is no meaning for using it. It might be used by an advanced user who needs to merge different query result, using the merge low level Lucene API, such as
TopDocs.merge(int, TopDocs[]).
-
-