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

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


    case MIN:
      return new MinAggregator();
    case AVG:
      return new AvgAggregator();
    case SUM:
      return new SumAggregator();
    default:
      throw new IllegalArgumentException("Unsupported aggregation aggregation type : " + this.type);
    }
  }
View Full Code Here

TOP

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

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.