public static final class FieldComparator.RelevanceComparator extends FieldComparator<Float>
TopScoreDocCollector
directly (which IndexSearcher.search(org.apache.lucene.search.Query, int)
uses when no Sort
is
specified).FieldComparator.ByteComparator, FieldComparator.DocComparator, FieldComparator.DoubleComparator, FieldComparator.FloatComparator, FieldComparator.FloatDocValuesComparator, FieldComparator.IntComparator, FieldComparator.IntDocValuesComparator, FieldComparator.LongComparator, FieldComparator.NumericComparator<T extends Number>, FieldComparator.RelevanceComparator, FieldComparator.ShortComparator, FieldComparator.TermOrdValComparator, FieldComparator.TermOrdValDocValuesComparator, FieldComparator.TermValComparator, FieldComparator.TermValDocValuesComparator
Modifier and Type | Method and Description |
---|---|
int |
compare(int slot1,
int slot2)
Compare hit at slot1 with hit at slot2.
|
int |
compareBottom(int doc)
Compare the bottom of the queue with doc.
|
int |
compareDocToValue(int doc,
Float valueObj)
Returns negative result if the doc's value is less
than the provided value.
|
int |
compareValues(Float first,
Float second)
Returns -1 if first is less than second.
|
void |
copy(int slot,
int doc)
This method is called when a new hit is competitive.
|
void |
setBottom(int bottom)
Set the bottom slot, ie the "weakest" (sorted last)
entry in the queue.
|
FieldComparator<Float> |
setNextReader(AtomicReaderContext context)
Set a new
AtomicReaderContext . |
void |
setScorer(Scorer scorer)
Sets the Scorer to use in case a document's score is
needed.
|
Float |
value(int slot)
Return the actual value in the slot.
|
binarySearch, binarySearch
public int compare(int slot1, int slot2)
FieldComparator
compare
in class FieldComparator<Float>
slot1
- first slot to compareslot2
- second slot to comparepublic int compareBottom(int doc) throws IOException
FieldComparator
FieldComparator.compare(int,int)
} as if bottom were slot1 and the new
document were slot 2.
For a search that hits many results, this method will be the hotspot (invoked by far the most frequently).
compareBottom
in class FieldComparator<Float>
doc
- that was hitIOException
public void copy(int slot, int doc) throws IOException
FieldComparator
copy
in class FieldComparator<Float>
slot
- which slot to copy the hit todoc
- docID relative to current readerIOException
public FieldComparator<Float> setNextReader(AtomicReaderContext context)
FieldComparator
AtomicReaderContext
. All subsequent docIDs are relative to
the current reader (you must add docBase if you need to
map it to a top-level docID).setNextReader
in class FieldComparator<Float>
context
- current reader contextpublic void setBottom(int bottom)
FieldComparator
FieldComparator.compareBottom(int)
is
called, you should compare against this slot. This
will always be called before FieldComparator.compareBottom(int)
.setBottom
in class FieldComparator<Float>
bottom
- the currently weakest (sorted last) slot in the queuepublic void setScorer(Scorer scorer)
FieldComparator
setScorer
in class FieldComparator<Float>
scorer
- Scorer instance that you should use to
obtain the current hit's score, if necessary.public Float value(int slot)
FieldComparator
value
in class FieldComparator<Float>
slot
- the valuepublic int compareValues(Float first, Float second)
FieldComparator
compareValues
in class FieldComparator<Float>
public int compareDocToValue(int doc, Float valueObj) throws IOException
FieldComparator
compareDocToValue
in class FieldComparator<Float>
IOException
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.