org.mentabean.sql.param.Param 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;
public interface Param {
/**
* Represents the parameters in query. In other words, this method returns a String
* with the expression exactly as will be shown in SQL before its execution.
* @return String
*/
public String paramInQuery();
/**
* The parameter's values
* @return Object[]
*/
public Object[] values();
}