org.mentabean.sql.param.ParamFunction 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.param;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.mentabean.sql.Function;
public class ParamFunction implements Param {
private Function function;
public ParamFunction(Function function) {
this.function = function;
}
@Override
public String paramInQuery() {
return function.build();
}
@Override
public Object[] values() {
List