org.hibernate.ejb.criteria.expression.function
Class AggregationFunction<T>
java.lang.Object
org.hibernate.ejb.criteria.AbstractNode
org.hibernate.ejb.criteria.expression.AbstractTupleElement<X>
org.hibernate.ejb.criteria.expression.SelectionImpl<T>
org.hibernate.ejb.criteria.expression.ExpressionImpl<X>
org.hibernate.ejb.criteria.expression.function.BasicFunctionExpression<X>
org.hibernate.ejb.criteria.expression.function.ParameterizedFunctionExpression<T>
org.hibernate.ejb.criteria.expression.function.AggregationFunction<T>
- All Implemented Interfaces:
- Serializable, Expression<T>, Selection<T>, TupleElement<T>, FunctionExpression<T>, ExpressionImplementor<T>, ParameterContainer, Renderable, SelectionImplementor<T>, TupleElementImplementor<T>
- Direct Known Subclasses:
- AggregationFunction.AVG, AggregationFunction.COUNT, AggregationFunction.GREATEST, AggregationFunction.LEAST, AggregationFunction.MAX, AggregationFunction.MIN, AggregationFunction.SUM
public class AggregationFunction<T>
- extends ParameterizedFunctionExpression<T>
- implements Serializable
Models SQL aggregation functions (MIN, MAX, COUNT, etc).
- See Also:
- Serialized Form
Method Summary |
boolean |
isAggregation()
Is this function a value aggregator (like a COUNT or MAX function e.g.)? |
Methods inherited from class org.hibernate.ejb.criteria.expression.ExpressionImpl |
as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, in, in, in, in, isNotNull, isNull |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AggregationFunction
public AggregationFunction(CriteriaBuilderImpl criteriaBuilder,
Class<T> returnType,
String functionName,
Object argument)
- Constructs an aggregation function with a single literal argument.
- Parameters:
criteriaBuilder
- The query builder instance.returnType
- The function return type.functionName
- The name of the function.argument
- The literal argument
AggregationFunction
public AggregationFunction(CriteriaBuilderImpl criteriaBuilder,
Class<T> returnType,
String functionName,
Expression<?> argument)
- Constructs an aggregation function with a single literal argument.
- Parameters:
criteriaBuilder
- The query builder instance.returnType
- The function return type.functionName
- The name of the function.argument
- The argument
isAggregation
public boolean isAggregation()
- Description copied from interface:
FunctionExpression
- Is this function a value aggregator (like a COUNT or MAX function e.g.)?
- Specified by:
isAggregation
in interface FunctionExpression<T>
- Overrides:
isAggregation
in class BasicFunctionExpression<T>
- Returns:
- True if this functions does aggregation.
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.