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 classFieldValueHitQueue<T extends FieldValueHitQueue.Entry>Expert: A hit queue for sorting by hits by terms in more than one field.private static classFieldValueHitQueue.MultiComparatorsFieldValueHitQueue<T extends FieldValueHitQueue.Entry>An implementation ofFieldValueHitQueuewhich is optimized in case there is more than one comparator.private static classFieldValueHitQueue.OneComparatorFieldValueHitQueue<T extends FieldValueHitQueue.Entry>An implementation ofFieldValueHitQueuewhich 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.EntryTopFieldCollector. bottomFields 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. queueMethods 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) FieldDocFieldValueHitQueue. fillFields(FieldValueHitQueue.Entry entry)Given a queue Entry, creates a corresponding FieldDoc that contains the values used to sort the given document.protected abstract booleanFieldValueHitQueue. lessThan(FieldValueHitQueue.Entry a, FieldValueHitQueue.Entry b)protected booleanFieldValueHitQueue.MultiComparatorsFieldValueHitQueue. lessThan(FieldValueHitQueue.Entry hitA, FieldValueHitQueue.Entry hitB)protected booleanFieldValueHitQueue.OneComparatorFieldValueHitQueue. lessThan(FieldValueHitQueue.Entry hitA, FieldValueHitQueue.Entry hitB)Returns whetherhitAis 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)
-