Uses of Class
org.apache.lucene.search.TopFieldCollector
-
Packages that use TopFieldCollector Package Description org.apache.lucene.search Code to search indices. -
-
Uses of TopFieldCollector in org.apache.lucene.search
Subclasses of TopFieldCollector in org.apache.lucene.search Modifier and Type Class Description private static class
TopFieldCollector.PagingFieldCollector
private static class
TopFieldCollector.SimpleFieldCollector
Methods in org.apache.lucene.search that return TopFieldCollector Modifier and Type Method Description static TopFieldCollector
TopFieldCollector. create(Sort sort, int numHits, int totalHitsThreshold)
Creates a newTopFieldCollector
from the given arguments.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.Methods in org.apache.lucene.search that return types with arguments of type TopFieldCollector Modifier and Type Method Description 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.
-