| AbstractAggregationExpression<T,R> |
Parent for aggregation function classes
|
| AvgExpression<T> |
The AVG() function returns the average value of a numeric collection.
|
| CountExpression<T> |
The COUNT() function returns the number of items that matches a specified criterion.
|
| MaxExpression<T,R extends java.lang.Comparable<R>> |
The MAX() function returns the maximum value of a collection.
|
| MinExpression<T,R> |
The MIN() function returns the minimum value of a collection.
|
| SumExpression<T> |
The SUM() function returns the total sum of a numeric collection.
|