Class LegacyBinaryDocValues

java.lang.Object
org.apache.lucene.codecs.memory.LegacyBinaryDocValues
Direct Known Subclasses:
LegacySortedDocValues

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

    • LegacyBinaryDocValues

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

    • 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.