Package org.apache.lucene.search
Class TopFieldDocs
- java.lang.Object
 - 
- org.apache.lucene.search.TopDocs
 - 
- org.apache.lucene.search.TopFieldDocs
 
 
 
- 
public class TopFieldDocs extends TopDocs
Represents hits returned byIndexSearcher.search(Query,Filter,int,Sort). 
- 
- 
Constructor Summary
Constructors Constructor Description TopFieldDocs(int totalHits, ScoreDoc[] scoreDocs, SortField[] fields, float maxScore)Creates one of these objects. 
- 
Method Summary
- 
Methods inherited from class org.apache.lucene.search.TopDocs
getMaxScore, merge, setMaxScore 
 - 
 
 - 
 
- 
- 
Field Detail
- 
fields
public SortField[] fields
The fields which were used to sort results by. 
 - 
 
- 
Constructor Detail
- 
TopFieldDocs
public TopFieldDocs(int totalHits, ScoreDoc[] scoreDocs, SortField[] fields, float maxScore)Creates one of these objects.- Parameters:
 totalHits- Total number of hits for the query.scoreDocs- The top hits for the query.fields- The sort criteria used to find the top hits.maxScore- The maximum score encountered.
 
 - 
 
 -