Class LegacySortedNumericDocValues


  • @Deprecated
    abstract class LegacySortedNumericDocValues
    extends java.lang.Object
    Deprecated.
    A list of per-document numeric values, sorted according to Long.compare(long, long).
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      abstract int count()
      Deprecated.
      Retrieves the count of values for the current document.
      abstract void setDocument​(int doc)
      Deprecated.
      Positions to the specified document
      abstract long valueAt​(int index)
      Deprecated.
      Retrieve the value for the current document at the specified index.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LegacySortedNumericDocValues

        protected LegacySortedNumericDocValues()
        Deprecated.
        Sole constructor. (For invocation by subclass constructors, typically implicit.)
    • Method Detail

      • setDocument

        public abstract void setDocument​(int doc)
        Deprecated.
        Positions to the specified document
      • valueAt

        public abstract long valueAt​(int index)
        Deprecated.
        Retrieve the value for the current document at the specified index. An index ranges from 0 to count()-1.
      • count

        public abstract int count()
        Deprecated.
        Retrieves the count of values for the current document. This may be zero if a document has no values.