Package org.jpmml.evaluator.functions
Class UnaryFunction
- java.lang.Object
-
- org.jpmml.evaluator.functions.AbstractFunction
-
- org.jpmml.evaluator.functions.UnaryFunction
-
- All Implemented Interfaces:
Function
- Direct Known Subclasses:
BooleanFunction,MathFunction,MeanFunction,StringFunction,ValueFunction
public abstract class UnaryFunction extends AbstractFunction
-
-
Constructor Summary
Constructors Constructor Description UnaryFunction(String name)UnaryFunction(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 value)-
Methods inherited from class org.jpmml.evaluator.functions.AbstractFunction
getAliases, getName
-
-
-
-
Method Detail
-
evaluate
public abstract FieldValue evaluate(FieldValue value)
-
evaluate
public FieldValue evaluate(List<FieldValue> arguments)
Description copied from interface:FunctionEvaluates this function with the specified arguments.
-
-