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

com.jpaquery.core.facade.SelectPath Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.jpaquery.core.facade;

public interface SelectPath {

	/**
	 * 聚集函数类型
	 * 
	 * @author lujijiang
	 * 
	 */
	public enum SelectPathType {
		distinct, count, avg, sum, min, max
	}

	SelectPath distinct();

	FunctionPath count();

	FunctionPath avg();

	FunctionPath sum();

	FunctionPath min();

	FunctionPath max();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy