Package org.apache.lucene.index
Class NumericDocValues
- java.lang.Object
-
- org.apache.lucene.index.NumericDocValues
-
- Direct Known Subclasses:
LongValues,PackedInts.Reader
public abstract class NumericDocValues extends Object
A per-document numeric value.
-
-
Field Summary
Fields Modifier and Type Field Description static NumericDocValuesEMPTYAn empty NumericDocValues which returns zero for every document
-
Constructor Summary
Constructors Modifier Constructor Description protectedNumericDocValues()Sole constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract longget(int docID)Returns the numeric value for the specified document ID.
-
-
-
Field Detail
-
EMPTY
public static final NumericDocValues EMPTY
An empty NumericDocValues which returns zero for every document
-
-