Class NullWrappedAbstractInc
java.lang.Object
com.singularsys.jep.functions.PostfixMathCommand
com.singularsys.jep.misc.javaops.AbstractInc
com.singularsys.jep.misc.nullwrapper.functions.NullWrappedAbstractInc
- All Implemented Interfaces:
CallbackEvaluationI,NullWrappedFunctionI,PostfixMathCommandI,Serializable
Null wrapped version of the AbstractInc functions.
- Author:
- rich
- See Also:
-
Field Summary
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, name, NaN, numberOfParameters -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.singularsys.jep.misc.javaops.AbstractInc
getVal, getVarMethods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, checkNumberOfParameters, getName, getNumberOfParameters, run, setCurNumberOfParameters, toString, toString
-
Constructor Details
-
NullWrappedAbstractInc
-
-
Method Details
-
getRoot
Description copied from interface:NullWrappedFunctionIGet to function which this function wraps.- Specified by:
getRootin interfaceNullWrappedFunctionI- Returns:
- the root function, may be "this".
-
evaluate
Description copied from interface:CallbackEvaluationIPerforms some special evaluation on the node. This method has the responsibility for evaluating the children of the node, and it should generally callpv.eval(node.jjtGetChild(i))
for each child. The SymbolTable is not passed as an argument. This is because it is better practice to get and set variable values by using node.getVar().setValue() rather that through the SymbolTable with requires a hashtable lookup.- Specified by:
evaluatein interfaceCallbackEvaluationI- Parameters:
node- The current nodepv- The visitor, can be used evaluate the children- Returns:
- the value after evaluation. This value will be passed to other functions higher up the node tree. The value can be any type including Double or Vector<Object>
- Throws:
EvaluationException- if the calculation cannot be performed- See Also:
-
setName
Description copied from interface:PostfixMathCommandISets the name of the function used for error messages- Specified by:
setNamein interfacePostfixMathCommandI- Overrides:
setNamein classPostfixMathCommand- Parameters:
name- the function name
-