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

org.mentabean.sql.functions.Sum Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
package org.mentabean.sql.functions;

import org.mentabean.sql.Function;
import org.mentabean.sql.Parametrizable;
import org.mentabean.sql.param.Param;

public class Sum extends Parametrizable implements Function {

	public Sum(Param param) {
		addParam(param);
	}
	
	@Override
	public String name() {
		return "SUM";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy