Uses of Class
org.hibernate.criterion.AggregateProjection

Packages that use AggregateProjection
org.hibernate.criterion   
 

Uses of AggregateProjection in org.hibernate.criterion
 

Subclasses of AggregateProjection in org.hibernate.criterion
 class AvgProjection
           
 class CountProjection
          A count
 

Methods in org.hibernate.criterion that return AggregateProjection
static AggregateProjection Projections.max(String propertyName)
          A property maximum value
static AggregateProjection Projections.min(String propertyName)
          A property minimum value
static AggregateProjection Projections.avg(String propertyName)
          A property average value
static AggregateProjection Projections.sum(String propertyName)
          A property value sum
 AggregateProjection Property.max()
           
 AggregateProjection Property.min()
           
 AggregateProjection Property.avg()