Uses of Class
org.apache.lucene.search.FieldDoc
-
Packages that use FieldDoc Package Description org.apache.lucene.search Code to search indices. -
-
Uses of FieldDoc in org.apache.lucene.search
Fields in org.apache.lucene.search declared as FieldDoc Modifier and Type Field Description (package private) FieldDoc
TopFieldCollector.PagingFieldCollector. after
Methods in org.apache.lucene.search that return FieldDoc Modifier and Type Method Description (package private) FieldDoc
FieldValueHitQueue. fillFields(FieldValueHitQueue.Entry entry)
Given a queue Entry, creates a corresponding FieldDoc that contains the values used to sort the given document.Methods in org.apache.lucene.search with parameters of type FieldDoc Modifier and Type Method Description static TopFieldCollector
TopFieldCollector. create(Sort sort, int numHits, FieldDoc after, int totalHitsThreshold)
Creates a newTopFieldCollector
from the given arguments.(package private) static TopFieldCollector
TopFieldCollector. create(Sort sort, int numHits, FieldDoc after, HitsThresholdChecker hitsThresholdChecker, MaxScoreAccumulator minScoreAcc)
Same as above with additional parameters to allow passing in the threshold checker and the max score accumulator.static CollectorManager<TopFieldCollector,TopFieldDocs>
TopFieldCollector. createSharedManager(Sort sort, int numHits, FieldDoc after, int totalHitsThreshold)
Create a CollectorManager which uses a shared hit counter to maintain number of hits and a sharedMaxScoreAccumulator
to propagate the minimum score accross segments if the primary sort is by relevancy.private TopFieldDocs
IndexSearcher. searchAfter(FieldDoc after, Query query, int numHits, Sort sort, boolean doDocScores)
Constructors in org.apache.lucene.search with parameters of type FieldDoc Constructor Description PagingFieldCollector(Sort sort, FieldValueHitQueue<FieldValueHitQueue.Entry> queue, FieldDoc after, int numHits, HitsThresholdChecker hitsThresholdChecker, MaxScoreAccumulator minScoreAcc)
-