pers.clare.hisql.function.ArgumentHandler Maven / Gradle / Ivy
The newest version!
package pers.clare.hisql.function;
import pers.clare.hisql.exception.HiSqlException;
@FunctionalInterface
public interface ArgumentHandler {
T apply(Object[] arguments) throws HiSqlException;
}