org.mentabean.sql.functions.Coalesce 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 Coalesce extends Parametrizable implements Function {
@Override
public String name() {
return "COALESCE";
}
@Override
public Coalesce addParam(Param param) {
super.addParam(param);
return this;
}
}