Uses of Class
org.apache.lucene.search.FieldValueHitQueue.Entry
-
Packages that use FieldValueHitQueue.Entry Package Description org.apache.lucene.search Code to search indices. -
-
Uses of FieldValueHitQueue.Entry in org.apache.lucene.search
Classes in org.apache.lucene.search with type parameters of type FieldValueHitQueue.Entry Modifier and Type Class Description class
FieldValueHitQueue<T extends FieldValueHitQueue.Entry>
Expert: A hit queue for sorting by hits by terms in more than one field.private static class
FieldValueHitQueue.MultiComparatorsFieldValueHitQueue<T extends FieldValueHitQueue.Entry>
An implementation ofFieldValueHitQueue
which is optimized in case there is more than one comparator.private static class
FieldValueHitQueue.OneComparatorFieldValueHitQueue<T extends FieldValueHitQueue.Entry>
An implementation ofFieldValueHitQueue
which is optimized in case there is just one comparator.Fields in org.apache.lucene.search declared as FieldValueHitQueue.Entry Modifier and Type Field Description (package private) FieldValueHitQueue.Entry
TopFieldCollector. bottom
Fields in org.apache.lucene.search with type parameters of type FieldValueHitQueue.Entry Modifier and Type Field Description (package private) FieldValueHitQueue<FieldValueHitQueue.Entry>
TopFieldCollector.PagingFieldCollector. queue
(package private) FieldValueHitQueue<FieldValueHitQueue.Entry>
TopFieldCollector.SimpleFieldCollector. queue
Methods in org.apache.lucene.search with type parameters of type FieldValueHitQueue.Entry Modifier and Type Method Description static <T extends FieldValueHitQueue.Entry>
FieldValueHitQueue<T>FieldValueHitQueue. create(SortField[] fields, int size)
Creates a hit queue sorted by the given list of fields.Methods in org.apache.lucene.search with parameters of type FieldValueHitQueue.Entry 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.protected abstract boolean
FieldValueHitQueue. lessThan(FieldValueHitQueue.Entry a, FieldValueHitQueue.Entry b)
protected boolean
FieldValueHitQueue.MultiComparatorsFieldValueHitQueue. lessThan(FieldValueHitQueue.Entry hitA, FieldValueHitQueue.Entry hitB)
protected boolean
FieldValueHitQueue.OneComparatorFieldValueHitQueue. lessThan(FieldValueHitQueue.Entry hitA, FieldValueHitQueue.Entry hitB)
Returns whetherhitA
is less relevant thanhitB
.Constructor parameters in org.apache.lucene.search with type arguments of type FieldValueHitQueue.Entry Constructor Description PagingFieldCollector(Sort sort, FieldValueHitQueue<FieldValueHitQueue.Entry> queue, FieldDoc after, int numHits, HitsThresholdChecker hitsThresholdChecker, MaxScoreAccumulator minScoreAcc)
SimpleFieldCollector(Sort sort, FieldValueHitQueue<FieldValueHitQueue.Entry> queue, int numHits, HitsThresholdChecker hitsThresholdChecker, MaxScoreAccumulator minScoreAcc)
TopFieldCollector(FieldValueHitQueue<FieldValueHitQueue.Entry> pq, int numHits, HitsThresholdChecker hitsThresholdChecker, boolean needsScores, MaxScoreAccumulator minScoreAcc)
-