Uses of Class
org.apache.lucene.search.HitsThresholdChecker
-
Packages that use HitsThresholdChecker Package Description org.apache.lucene.search Code to search indices. -
-
Uses of HitsThresholdChecker in org.apache.lucene.search
Subclasses of HitsThresholdChecker in org.apache.lucene.search Modifier and Type Class Description private static class
HitsThresholdChecker.GlobalHitsThresholdChecker
Implementation of HitsThresholdChecker which allows global hit countingprivate static class
HitsThresholdChecker.LocalHitsThresholdChecker
Default implementation of HitsThresholdChecker to be used for single threaded executionFields in org.apache.lucene.search declared as HitsThresholdChecker Modifier and Type Field Description private static HitsThresholdChecker
HitsThresholdChecker. EXACT_HITS_COUNT_THRESHOLD_CHECKER
No-op implementation ofHitsThresholdChecker
that does no counting, as the threshold can never be reached.(package private) HitsThresholdChecker
TopFieldCollector. hitsThresholdChecker
(package private) HitsThresholdChecker
TopScoreDocCollector. hitsThresholdChecker
Methods in org.apache.lucene.search that return HitsThresholdChecker Modifier and Type Method Description (package private) static HitsThresholdChecker
HitsThresholdChecker. create(int totalHitsThreshold)
(package private) static HitsThresholdChecker
HitsThresholdChecker. createShared(int totalHitsThreshold)
Methods in org.apache.lucene.search with parameters of type HitsThresholdChecker Modifier and Type Method Description (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.(package private) static TopScoreDocCollector
TopScoreDocCollector. create(int numHits, ScoreDoc after, HitsThresholdChecker hitsThresholdChecker, MaxScoreAccumulator minScoreAcc)
-