Package org.boris.expr.function.excel

Source Code of org.boris.expr.function.excel.DCOUNT

package org.boris.expr.function.excel;

import org.boris.expr.Expr;
import org.boris.expr.ExprDouble;
import org.boris.expr.ExprException;
import org.boris.expr.ExprNumber;
import org.boris.expr.function.SimpleDatabaseFunction;

public class DCOUNT extends SimpleDatabaseFunction
{
    protected Expr evaluateMatches(Expr[] matches) throws ExprException {
        int count = 0;
        for (Expr m : matches) {
            if (m instanceof ExprNumber)
                count++;
        }
        return new ExprDouble(count);
    }
}
TOP

Related Classes of org.boris.expr.function.excel.DCOUNT

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.