public static final class FieldComparator.LongComparator extends FieldComparator.NumericComparator<Long>
FieldCache.getLongs(org.apache.lucene.index.AtomicReader, java.lang.String, boolean) and sorts by ascending valueFieldComparator.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.TermValDocValuesComparatordocsWithField, field, missingValue| 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,
Long valueObj)
Returns negative result if the doc's value is less
than the provided value.
|
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<Long> |
setNextReader(AtomicReaderContext context)
Set a new
AtomicReaderContext. |
Long |
value(int slot)
Return the actual value in the slot.
|
binarySearch, binarySearch, compareValues, setScorerpublic int compare(int slot1,
int slot2)
FieldComparatorcompare in class FieldComparator<Long>slot1 - first slot to compareslot2 - second slot to comparepublic int compareBottom(int doc)
FieldComparatorFieldComparator.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<Long>doc - that was hitpublic void copy(int slot,
int doc)
FieldComparatorcopy in class FieldComparator<Long>slot - which slot to copy the hit todoc - docID relative to current readerpublic FieldComparator<Long> setNextReader(AtomicReaderContext context) throws IOException
FieldComparatorAtomicReaderContext. 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.NumericComparator<Long>context - current reader contextIOException - if there is a low-level IO errorpublic void setBottom(int bottom)
FieldComparatorFieldComparator.compareBottom(int) is
called, you should compare against this slot. This
will always be called before FieldComparator.compareBottom(int).setBottom in class FieldComparator<Long>bottom - the currently weakest (sorted last) slot in the queuepublic Long value(int slot)
FieldComparatorvalue in class FieldComparator<Long>slot - the valuepublic int compareDocToValue(int doc,
Long valueObj)
FieldComparatorcompareDocToValue in class FieldComparator<Long>Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.