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