Class PowFloatFunction
- java.lang.Object
-
- org.apache.lucene.queries.function.ValueSource
-
- org.apache.lucene.queries.function.valuesource.DualFloatFunction
-
- org.apache.lucene.queries.function.valuesource.PowFloatFunction
-
public class PowFloatFunction extends DualFloatFunction
Function to raise the base "a" to the power "b"
-
-
Constructor Summary
Constructors Constructor Description PowFloatFunction(ValueSource a, ValueSource b)
-
Method Summary
-
Methods inherited from class org.apache.lucene.queries.function.valuesource.DualFloatFunction
createWeight, description, equals, getValues, hashCode
-
Methods inherited from class org.apache.lucene.queries.function.ValueSource
getSortField, newContext, toString
-
-
-
-
Constructor Detail
-
PowFloatFunction
public PowFloatFunction(ValueSource a, ValueSource b)
- Parameters:
a
- the base.b
- the exponent.
-
-