All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.criterion.AvgProjection Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: AvgProjection.java 9908 2006-05-08 20:59:20Z [email protected] $
package org.hibernate.criterion;

import org.hibernate.Criteria;
import org.hibernate.Hibernate;
import org.hibernate.HibernateException;
import org.hibernate.type.Type;

/**
 * @author Gavin King
 */
public class AvgProjection extends AggregateProjection {

	public AvgProjection(String propertyName) {
		super("avg", propertyName);
	}
	
	public Type[] getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
	throws HibernateException {
		return new Type[] { Hibernate.DOUBLE };
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy