Package org.apache.lucene.index
Class BinaryDocValues
- java.lang.Object
-
- org.apache.lucene.index.BinaryDocValues
-
- Direct Known Subclasses:
SortedDocValues
public abstract class BinaryDocValues extends java.lang.Object
A per-document byte[]
-
-
Field Summary
Fields Modifier and Type Field Description static BinaryDocValues
EMPTY
An empty BinaryDocValues which returnsBytesRef.EMPTY_BYTES
for every document
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
get(int docID, BytesRef result)
Lookup the value for document.
-
-
-
Field Detail
-
EMPTY
public static final BinaryDocValues EMPTY
An empty BinaryDocValues which returnsBytesRef.EMPTY_BYTES
for every document
-
-
Method Detail
-
get
public abstract void get(int docID, BytesRef result)
Lookup the value for document.
-
-