Class SortedBinaryDocValues

java.lang.Object
org.elasticsearch.index.fielddata.SortedBinaryDocValues
Direct Known Subclasses:
IpScriptDocValues, SortingBinaryDocValues

public abstract class SortedBinaryDocValues extends Object
A list of per-document binary values, sorted according to BytesRef.compareTo(BytesRef). There might be dups however.
  • Constructor Details

    • SortedBinaryDocValues

      public SortedBinaryDocValues()
  • Method Details

    • advanceExact

      public abstract boolean advanceExact(int doc) throws IOException
      Advance this instance to the given document id
      Returns:
      true if there is a value for this document
      Throws:
      IOException
    • docValueCount

      public abstract int docValueCount()
      Retrieves the number of values for the current document. This must always be greater than zero. It is illegal to call this method after advanceExact(int) returned false.
    • nextValue

      public abstract org.apache.lucene.util.BytesRef nextValue() throws IOException
      Iterates to the next value in the current document. Do not call this more than docValueCount() times for the document. Note that the returned BytesRef might be reused across invocations.
      Throws:
      IOException