FileDocCategorySizeDatePackage
Pi.javaAPI DocApache Poi 3.0.11596Sun Mar 11 12:59:30 GMT 2007org.apache.poi.hssf.record.formula.functions

Pi

public class Pi extends Object implements Function
author
Amol S. Deshmukh < amolweb at ya hoo dot com >

Fields Summary
private static final NumberEval
PI_EVAL
Constructors Summary
Methods Summary
public org.apache.poi.hssf.record.formula.eval.Evalevaluate(org.apache.poi.hssf.record.formula.eval.Eval[] operands, int srcRow, short srcCol)


            
        ValueEval retval;
        switch (operands.length) {
        default:
            retval = ErrorEval.VALUE_INVALID;
            break;
        case 0:
            retval = PI_EVAL;
        }
        return retval;