Class LegacyBinaryDocValues

  • Direct Known Subclasses:
    LegacySortedDocValues

    @Deprecated
    abstract class LegacyBinaryDocValues
    extends java.lang.Object
    Deprecated.
    Use BinaryDocValues instead.
    A per-document byte[]
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected LegacyBinaryDocValues()
      Deprecated.
      Sole constructor.
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      abstract BytesRef get​(int docID)
      Deprecated.
      Lookup the value for document.
      • Methods inherited from class java.lang.Object

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

      • LegacyBinaryDocValues

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

      • get

        public abstract BytesRef get​(int docID)
        Deprecated.
        Lookup the value for document. The returned BytesRef may be re-used across calls to get(int) so make sure to copy it if you want to keep it around.