org.mentabean.sql.HasParams 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;
import org.mentabean.sql.param.Param;
public interface HasParams {
public Param[] getParams();
public String build();
}