Package com.inadco.hbl.client.impl.functions

Examples of com.inadco.hbl.client.impl.functions.FCount


    private final Map<String, AggregateFunction> functions = new HashMap<String, AggregateFunction>();

    SimpleAggregateFunctionRegistry() {
        super();
        // standard aggregates
        addFunction(new FCount());
        addFunction(new FSum());
        addFunction(new FAvg());
        addFunction(new FStdDev());
        addFunction(new FStdVar());
        addFunction(new FSumSq());
View Full Code Here

TOP

Related Classes of com.inadco.hbl.client.impl.functions.FCount

Copyright © 2018 www.massapicom. 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.