org.mentabean.sql.functions.Avg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of menta-bean Show documentation
Show all versions of menta-bean Show documentation
An query helper and simple CRUD ORM.
package org.mentabean.sql.functions;
import org.mentabean.sql.Function;
import org.mentabean.sql.Parametrizable;
import org.mentabean.sql.param.Param;
public class Avg extends Parametrizable implements Function {
public Avg(Param param) {
addParam(param);
}
@Override
public String name() {
return "AVG";
}
}