Class FloatDocValues
- java.lang.Object
-
- org.apache.lucene.queries.function.FunctionValues
-
- org.apache.lucene.queries.function.docvalues.FloatDocValues
-
public abstract class FloatDocValues extends FunctionValues
AbstractFunctionValues
implementation which supports retrieving float values. Implementations can control how the float values are loaded throughfloatVal(int)
}
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.queries.function.FunctionValues
FunctionValues.ValueFiller
-
-
Constructor Summary
Constructors Constructor Description FloatDocValues(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)
abstract float
floatVal(int doc)
FunctionValues.ValueFiller
getValueFiller()
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
-
FloatDocValues
public FloatDocValues(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 abstract float floatVal(int doc)
- Overrides:
floatVal
in classFunctionValues
-
intVal
public 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
-
getValueFiller
public FunctionValues.ValueFiller getValueFiller()
- Overrides:
getValueFiller
in classFunctionValues
-
-