org.hibernate.ejb.criteria.expression.function
Class AggregationFunction<T>
java.lang.Object
   org.hibernate.ejb.criteria.AbstractNode
org.hibernate.ejb.criteria.AbstractNode
       org.hibernate.ejb.criteria.expression.AbstractTupleElement<X>
org.hibernate.ejb.criteria.expression.AbstractTupleElement<X>
           org.hibernate.ejb.criteria.expression.SelectionImpl<T>
org.hibernate.ejb.criteria.expression.SelectionImpl<T>
               org.hibernate.ejb.criteria.expression.ExpressionImpl<X>
org.hibernate.ejb.criteria.expression.ExpressionImpl<X>
                   org.hibernate.ejb.criteria.expression.function.BasicFunctionExpression<X>
org.hibernate.ejb.criteria.expression.function.BasicFunctionExpression<X>
                       org.hibernate.ejb.criteria.expression.function.ParameterizedFunctionExpression<T>
org.hibernate.ejb.criteria.expression.function.ParameterizedFunctionExpression<T>
                           org.hibernate.ejb.criteria.expression.function.AggregationFunction<T>
org.hibernate.ejb.criteria.expression.function.AggregationFunction<T>
- All Implemented Interfaces: 
- Serializable, javax.persistence.criteria.Expression<T>, javax.persistence.criteria.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).
- Author:
- Steve Ebersole
- 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 | 
 
 
| Methods inherited from interface javax.persistence.criteria.Expression | 
| as, in, in, in, in, isNotNull, isNull | 
 
| Methods inherited from interface javax.persistence.criteria.Selection | 
| alias, getCompoundSelectionItems, isCompoundSelection | 
 
 
 
 
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,
                           javax.persistence.criteria.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:
- isAggregationin interface- FunctionExpression<T>
- Overrides:
- isAggregationin class- BasicFunctionExpression<T>
 
- 
- Returns:
- True if this functions does aggregation.
 
Copyright © 2001-2010 Red Hat, Inc.  All Rights Reserved.