Uses of Interface
org.apache.openjpa.persistence.query.Aggregate
Packages that use Aggregate
-
Uses of Aggregate in org.apache.openjpa.persistence.query
Classes in org.apache.openjpa.persistence.query that implement AggregateModifier and TypeClassDescriptionclass
Denotes ABS() operation on a given expression.class
Denotes AVG() on a given Expression.class
Denotes CONCAT(e1,e2,..)class
Denotes COUNT(e) Expression.class
Denotes DISTINCT(e) Expression.class
Denotes INDEX(e) Expression.class
Denotes LENGTH(e) Expression.class
Denotes LOWER(e) Expression.class
Denotes MAX(e) Expression.class
Denotes MIN(e) Expression.class
Denotes SIZE(e) Expression.class
Denotes SQRT(e) Expression.class
Denotes SUBSTR(a,i1,i2) Expression.class
Denotes SUM(e) Expression.class
Denotes TRIM(e1,x) Expression.class
Denotes TYPE(e) Expression.class
Denotes (-e) Expression.class
Denotes UPPER(e) Expression.Methods in org.apache.openjpa.persistence.query that return AggregateModifier and TypeMethodDescriptionPathExpression.avg()
Specify that the avg operation is to be applied.PathExpression.count()
Specify that the count operation is to be applied.PathExpression.max()
Specify that the max operation is to be applied.PathExpression.min()
Specify that the min operation is to be applied.PathExpression.sum()
Specify that the sum operation is to be applied.