public abstract class AbstractVNumberArrayVNumberToVNumberArrayFormulaFunction extends Object implements FormulaFunction
This class takes care of:
Constructor and Description |
---|
AbstractVNumberArrayVNumberToVNumberArrayFormulaFunction(String name,
String description,
String arg1Name,
String arg2Name)
Creates a new function.
|
Modifier and Type | Method and Description |
---|---|
Object |
calculate(List<Object> args)
Calculate the result of the function given the arguments.
|
List<String> |
getArgumentNames()
The ordered list of the argument names.
|
List<Class<?>> |
getArgumentTypes()
The ordered list of the arguments type.
|
String |
getDescription()
Return the description of the function.
|
String |
getName()
Return the name of the function.
|
Class<?> |
getReturnType()
The type of the function result.
|
boolean |
isPure()
Whether the function is a pure function, given the same
arguments always returns the same result.
|
boolean |
isVarArgs()
Whether the function takes a variable number of arguments.
|
public AbstractVNumberArrayVNumberToVNumberArrayFormulaFunction(String name, String description, String arg1Name, String arg2Name)
name
- the name of the functiondescription
- a short descriptionarg1Name
- first argument namearg2Name
- second argument namepublic boolean isPure()
FormulaFunction
isPure
in interface FormulaFunction
public boolean isVarArgs()
FormulaFunction
Variable arguments can only be at the end of the argument list, and have the same type.
isVarArgs
in interface FormulaFunction
public String getName()
FormulaFunction
getName
in interface FormulaFunction
public String getDescription()
FormulaFunction
getDescription
in interface FormulaFunction
public List<Class<?>> getArgumentTypes()
FormulaFunction
getArgumentTypes
in interface FormulaFunction
public List<String> getArgumentNames()
FormulaFunction
getArgumentNames
in interface FormulaFunction
public Class<?> getReturnType()
FormulaFunction
getReturnType
in interface FormulaFunction
public Object calculate(List<Object> args)
FormulaFunction
calculate
in interface FormulaFunction
args
- the argument listCopyright © 2010–2015. All rights reserved.