Package org.jpmml.evaluator.functions
Class TernaryFunction
- java.lang.Object
-
- org.jpmml.evaluator.functions.AbstractFunction
-
- org.jpmml.evaluator.functions.TernaryFunction
-
- All Implemented Interfaces:
Function
public abstract class TernaryFunction extends AbstractFunction
-
-
Constructor Summary
Constructors Constructor Description TernaryFunction(java.lang.String name)TernaryFunction(java.lang.String name, java.util.List<java.lang.String> aliases)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description FieldValueevaluate(java.util.List<FieldValue> arguments)Evaluates this function with the specified arguments.abstract FieldValueevaluate(FieldValue first, FieldValue second, FieldValue third)-
Methods inherited from class org.jpmml.evaluator.functions.AbstractFunction
checkFixedArityArguments, checkVariableArityArguments, checkVariableArityArguments, getAliases, getArgument, getName, getOptionalArgument, getRequiredArgument
-
-
-
-
Method Detail
-
evaluate
public abstract FieldValue evaluate(FieldValue first, FieldValue second, FieldValue third)
-
evaluate
public FieldValue evaluate(java.util.List<FieldValue> arguments)
Description copied from interface:FunctionEvaluates this function with the specified arguments.
-
-