Interface LuceneSearchResult<H>
-
- All Superinterfaces:
SearchResult<H>
public interface LuceneSearchResult<H> extends SearchResult<H>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TopDocs
topDocs()
-
Methods inherited from interface org.hibernate.search.engine.search.query.SearchResult
aggregation, hits, timedOut, took, total
-
-
-
-
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[])
.
-
-