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

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


    switch (this.type) {
    case COUNT:
      // 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:
View Full Code Here

TOP

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

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.