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.ObjectA per-document byte[] 
- 
- 
Field Summary
Fields Modifier and Type Field Description static BinaryDocValuesEMPTYAn empty BinaryDocValues which returnsBytesRef.EMPTY_BYTESfor every document 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidget(int docID, BytesRef result)Lookup the value for document. 
 - 
 
- 
- 
Field Detail
- 
EMPTY
public static final BinaryDocValues EMPTY
An empty BinaryDocValues which returnsBytesRef.EMPTY_BYTESfor every document 
 - 
 
- 
Method Detail
- 
get
public abstract void get(int docID, BytesRef result)Lookup the value for document. 
 - 
 
 -