org.apache.poi.ss.formula.functions
Interface Function

All Known Subinterfaces:
Function0Arg, Function1Arg, Function2Arg, Function3Arg, Function4Arg
All Known Implementing Classes:
Address, AggregateFunction, Bin2Dec, BooleanFunction, CalendarFieldFunction, Choose, Code, Column, Columns, Complex, ConcatEval, Count, Counta, Countblank, Countif, DateFunc, Days360, Dec2Bin, Dec2Hex, Delta, DStarRunner, Errortype, Even, FactDouble, FinanceFunction, Fixed, Fixed0ArgFunction, Fixed1ArgFunction, Fixed2ArgFunction, Fixed3ArgFunction, Fixed4ArgFunction, Hex2Dec, Hlookup, Hyperlink, IfFunc, Imaginary, ImReal, Index, Intercept, IntersectionEval, IPMT, Irr, LinearRegressionFunction, LogicalFunction, Lookup, Match, MinaMaxa, Mirr, Mode, MultiOperandNumericFunction, Na, NotImplementedFunction, Now, Npv, NumericFunction, NumericFunction.OneArg, NumericFunction.TwoArg, Oct2Dec, Odd, Offset, PercentEval, PPMT, Quotient, RangeEval, Rank, Rate, RelationalOperationEval, Replace, Rept, Roman, RowFunc, Rows, Slope, Substitute, Subtotal, Sumif, Sumproduct, Sumx2my2, Sumx2py2, Sumxmy2, T, TextFunction, TimeFunc, Today, TwoOperandNumericOperation, UnaryMinusEval, UnaryPlusEval, Value, Vlookup, WeekdayFunc, WeekNum, XYNumericFunction

public interface Function

Common interface for all implementations of Excel built-in functions.


Method Summary
 ValueEval evaluate(ValueEval[] args, int srcRowIndex, int srcColumnIndex)
           
 

Method Detail

evaluate

ValueEval evaluate(ValueEval[] args,
                   int srcRowIndex,
                   int srcColumnIndex)
Parameters:
args - the evaluated function arguments. Empty values are represented with BlankEval or MissingArgEval, never null.
srcRowIndex - row index of the cell containing the formula under evaluation
srcColumnIndex - column index of the cell containing the formula under evaluation
Returns:
The evaluated result, possibly an ErrorEval, never null. Note - Excel uses the error code #NUM! instead of IEEE NaN, so when numeric functions evaluate to Double.NaN be sure to translate the result to ErrorEval.NUM_ERROR.