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