Package org.apache.poi.ss.formula.eval
Class TwoOperandNumericOperation
- java.lang.Object
-
- org.apache.poi.ss.formula.functions.Fixed2ArgFunction
-
- org.apache.poi.ss.formula.eval.TwoOperandNumericOperation
-
- All Implemented Interfaces:
ArrayFunction,Function,Function2Arg
public abstract class TwoOperandNumericOperation extends Fixed2ArgFunction implements ArrayFunction
-
-
Field Summary
Fields Modifier and Type Field Description static FunctionAddEvalstatic FunctionDivideEvalstatic FunctionMultiplyEvalstatic FunctionPowerEvalstatic FunctionSubtractEval
-
Constructor Summary
Constructors Constructor Description TwoOperandNumericOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValueEvalevaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0, ValueEval arg1)ValueEvalevaluateArray(ValueEval[] args, int srcRowIndex, int srcColumnIndex)-
Methods inherited from class org.apache.poi.ss.formula.functions.Fixed2ArgFunction
evaluate
-
-
-
-
Method Detail
-
evaluateArray
public ValueEval evaluateArray(ValueEval[] args, int srcRowIndex, int srcColumnIndex)
- Specified by:
evaluateArrayin interfaceArrayFunction- Parameters:
args- the evaluated function arguments. Empty values are represented withBlankEvalorMissingArgEval, nevernull.srcRowIndex- row index of the cell containing the formula under evaluationsrcColumnIndex- column index of the cell containing the formula under evaluation- Returns:
- The evaluated result, possibly an
ErrorEval, nevernull. Note - Excel uses the error code #NUM! instead of IEEE NaN, so when numeric functions evaluate toDouble.NaNbe sure to translate the result toErrorEval.NUM_ERROR.
-
evaluate
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0, ValueEval arg1)
Description copied from interface:Function2Arg- Specified by:
evaluatein interfaceFunction2Arg
-
-