Class NumericComparator.NumericLeafComparator

java.lang.Object
org.apache.lucene.search.comparators.NumericComparator.NumericLeafComparator
All Implemented Interfaces:
LeafFieldComparator
Direct Known Subclasses:
DoubleComparator.DoubleLeafComparator, FloatComparator.FloatLeafComparator, IntComparator.IntLeafComparator, LongComparator.LongLeafComparator
Enclosing class:
NumericComparator<T extends Number>

public abstract class NumericComparator.NumericLeafComparator extends Object implements LeafFieldComparator
Leaf comparator for NumericComparator that provides skipping functionality
  • Field Details

    • docValues

      protected final NumericDocValues docValues
    • pointValues

      private final PointValues pointValues
    • enableSkipping

      private final boolean enableSkipping
    • maxDoc

      private final int maxDoc
    • minValueAsBytes

      private final byte[] minValueAsBytes
    • maxValueAsBytes

      private final byte[] maxValueAsBytes
    • competitiveIterator

      private DocIdSetIterator competitiveIterator
    • iteratorCost

      private long iteratorCost
    • maxDocVisited

      private int maxDocVisited
    • updateCounter

      private int updateCounter
  • Constructor Details

  • Method Details

    • getNumericDocValues

      protected NumericDocValues getNumericDocValues(LeafReaderContext context, String field) throws IOException
      Retrieves the NumericDocValues for the field in this segment
      Throws:
      IOException
    • setBottom

      public void setBottom(int slot) throws IOException
      Description copied from interface: LeafFieldComparator
      Set the bottom slot, ie the "weakest" (sorted last) entry in the queue. When LeafFieldComparator.compareBottom(int) is called, you should compare against this slot. This will always be called before LeafFieldComparator.compareBottom(int).
      Specified by:
      setBottom in interface LeafFieldComparator
      Parameters:
      slot - the currently weakest (sorted last) slot in the queue
      Throws:
      IOException
    • copy

      public void copy(int slot, int doc) throws IOException
      Description copied from interface: LeafFieldComparator
      This method is called when a new hit is competitive. You should copy any state associated with this document that will be required for future comparisons, into the specified slot.
      Specified by:
      copy in interface LeafFieldComparator
      Parameters:
      slot - which slot to copy the hit to
      doc - docID relative to current reader
      Throws:
      IOException
    • setScorer

      public void setScorer(Scorable scorer) throws IOException
      Description copied from interface: LeafFieldComparator
      Sets the Scorer to use in case a document's score is needed.
      Specified by:
      setScorer in interface LeafFieldComparator
      Parameters:
      scorer - Scorer instance that you should use to obtain the current hit's score, if necessary.
      Throws:
      IOException
    • setHitsThresholdReached

      public void setHitsThresholdReached() throws IOException
      Description copied from interface: LeafFieldComparator
      Informs this leaf comparator that hits threshold is reached. This method is called from a collector when hits threshold is reached.
      Specified by:
      setHitsThresholdReached in interface LeafFieldComparator
      Throws:
      IOException
    • updateCompetitiveIterator

      private void updateCompetitiveIterator() throws IOException
      Throws:
      IOException
    • competitiveIterator

      public DocIdSetIterator competitiveIterator()
      Description copied from interface: LeafFieldComparator
      Returns a competitive iterator
      Specified by:
      competitiveIterator in interface LeafFieldComparator
      Returns:
      an iterator over competitive docs that are stronger than already collected docs or null if such an iterator is not available for the current comparator or segment.
    • isMissingValueCompetitive

      protected abstract boolean isMissingValueCompetitive()
    • encodeBottom

      protected abstract void encodeBottom(byte[] packedValue)
    • encodeTop

      protected abstract void encodeTop(byte[] packedValue)