Class IntDocValues
- java.lang.Object
-
- org.apache.lucene.queries.function.FunctionValues
-
- org.apache.lucene.queries.function.docvalues.IntDocValues
-
public abstract class IntDocValues extends FunctionValues
AbstractFunctionValues
implementation which supports retrieving int values. Implementations can control how the int values are loaded throughintVal(int)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.queries.function.FunctionValues
FunctionValues.ValueFiller
-
-
Constructor Summary
Constructors Constructor Description IntDocValues(ValueSource vs)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description byte
byteVal(int doc)
double
doubleVal(int doc)
float
floatVal(int doc)
ValueSourceScorer
getRangeScorer(IndexReader reader, java.lang.String lowerVal, java.lang.String upperVal, boolean includeLower, boolean includeUpper)
FunctionValues.ValueFiller
getValueFiller()
abstract int
intVal(int doc)
long
longVal(int doc)
java.lang.Object
objectVal(int doc)
Native Java Object representation of the valueshort
shortVal(int doc)
java.lang.String
strVal(int doc)
java.lang.String
toString(int doc)
-
-
-
Constructor Detail
-
IntDocValues
public IntDocValues(ValueSource vs)
-
-
Method Detail
-
byteVal
public byte byteVal(int doc)
- Overrides:
byteVal
in classFunctionValues
-
shortVal
public short shortVal(int doc)
- Overrides:
shortVal
in classFunctionValues
-
floatVal
public float floatVal(int doc)
- Overrides:
floatVal
in classFunctionValues
-
intVal
public abstract int intVal(int doc)
- Overrides:
intVal
in classFunctionValues
-
longVal
public long longVal(int doc)
- Overrides:
longVal
in classFunctionValues
-
doubleVal
public double doubleVal(int doc)
- Overrides:
doubleVal
in classFunctionValues
-
strVal
public java.lang.String strVal(int doc)
- Overrides:
strVal
in classFunctionValues
-
objectVal
public java.lang.Object objectVal(int doc)
Description copied from class:FunctionValues
Native Java Object representation of the value- Overrides:
objectVal
in classFunctionValues
-
toString
public java.lang.String toString(int doc)
- Specified by:
toString
in classFunctionValues
-
getRangeScorer
public ValueSourceScorer getRangeScorer(IndexReader reader, java.lang.String lowerVal, java.lang.String upperVal, boolean includeLower, boolean includeUpper)
- Overrides:
getRangeScorer
in classFunctionValues
-
getValueFiller
public FunctionValues.ValueFiller getValueFiller()
- Overrides:
getValueFiller
in classFunctionValues
-
-