Package org.jpmml.evaluator.functions
Class BinaryFunction
- java.lang.Object
-
- org.jpmml.evaluator.functions.AbstractFunction
-
- org.jpmml.evaluator.functions.BinaryFunction
-
- All Implemented Interfaces:
Function
- Direct Known Subclasses:
ArithmeticFunction,ComparisonFunction,EqualityFunction,PercentileFunction,SplitFunction
public abstract class BinaryFunction extends AbstractFunction
-
-
Constructor Summary
Constructors Constructor Description BinaryFunction(String name)BinaryFunction(String name, List<String> aliases)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description FieldValueevaluate(List<FieldValue> arguments)Evaluates this function with the specified arguments.abstract FieldValueevaluate(FieldValue first, FieldValue second)-
Methods inherited from class org.jpmml.evaluator.functions.AbstractFunction
getAliases, getName
-
-
-
-
Method Detail
-
evaluate
public abstract FieldValue evaluate(FieldValue first, FieldValue second)
-
evaluate
public FieldValue evaluate(List<FieldValue> arguments)
Description copied from interface:FunctionEvaluates this function with the specified arguments.
-
-