Class MinFloatFunction
- java.lang.Object
-
- org.apache.lucene.queries.function.ValueSource
-
- org.apache.lucene.queries.function.valuesource.MultiFloatFunction
-
- org.apache.lucene.queries.function.valuesource.MinFloatFunction
-
public class MinFloatFunction extends MultiFloatFunction
MinFloatFunction
returns the min of its components.
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.queries.function.valuesource.MultiFloatFunction
sources
-
-
Constructor Summary
Constructors Constructor Description MinFloatFunction(ValueSource[] sources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
exists(int doc, FunctionValues[] valsArr)
True if any of the specifiedvalues
FunctionValues.exists(int)
for the specified doc, else false.protected float
func(int doc, FunctionValues[] valsArr)
protected String
name()
-
Methods inherited from class org.apache.lucene.queries.function.valuesource.MultiFloatFunction
createWeight, description, equals, getValues, hashCode
-
Methods inherited from class org.apache.lucene.queries.function.ValueSource
asDoubleValuesSource, asLongValuesSource, fromDoubleValuesSource, getSortField, newContext, toString
-
-
-
-
Constructor Detail
-
MinFloatFunction
public MinFloatFunction(ValueSource[] sources)
-
-
Method Detail
-
name
protected String name()
- Specified by:
name
in classMultiFloatFunction
-
func
protected float func(int doc, FunctionValues[] valsArr) throws IOException
- Specified by:
func
in classMultiFloatFunction
- Throws:
IOException
-
exists
protected boolean exists(int doc, FunctionValues[] valsArr) throws IOException
True if any of the specifiedvalues
FunctionValues.exists(int)
for the specified doc, else false.- Overrides:
exists
in classMultiFloatFunction
- Throws:
IOException
- See Also:
MultiFunction.anyExists(int, org.apache.lucene.queries.function.FunctionValues[])
-
-