Class MaxFloatFunction
- java.lang.Object
-
- org.apache.lucene.queries.function.ValueSource
-
- org.apache.lucene.queries.function.valuesource.MultiFloatFunction
-
- org.apache.lucene.queries.function.valuesource.MaxFloatFunction
-
public class MaxFloatFunction extends MultiFloatFunction
MaxFloatFunction
returns the max of its components.
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.queries.function.valuesource.MultiFloatFunction
sources
-
-
Constructor Summary
Constructors Constructor Description MaxFloatFunction(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
-
MaxFloatFunction
public MaxFloatFunction(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[])
-
-