Package org.yaac.server.egql.evaluator.aggregator

Examples of org.yaac.server.egql.evaluator.aggregator.MinAggregator


      // COUNT will only count those records in which the field in the brackets is NOT NULL.
      return new CountAggregator();
    case MAX:
      return new MaxAggregator();
    case MIN:
      return new MinAggregator();
    case AVG:
      return new AvgAggregator();
    case SUM:
      return new SumAggregator();
    default:
View Full Code Here

TOP

Related Classes of org.yaac.server.egql.evaluator.aggregator.MinAggregator

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.