Uses of Interface
cc.carm.lib.easysql.api.function.SQLFunction
-
Packages that use SQLFunction Package Description cc.carm.lib.easysql.api cc.carm.lib.easysql.api.action.query cc.carm.lib.easysql.api.function -
-
Uses of SQLFunction in cc.carm.lib.easysql.api
Methods in cc.carm.lib.easysql.api with parameters of type SQLFunction Modifier and Type Method Description default <R> RSQLAction. execute(@NotNull SQLFunction<T,R> function, @Nullable SQLExceptionHandler exceptionHandler)执行语句并处理返回值default <R> RSQLAction. execute(@NotNull SQLFunction<T,R> function, R defaultResult, @Nullable SQLExceptionHandler exceptionHandler)执行语句并处理返回值default <R> RSQLAction. executeFunction(@NotNull SQLFunction<@NotNull T,R> function)执行语句并处理返回值default <R> RSQLAction. executeFunction(@NotNull SQLFunction<@NotNull T,R> function, R defaultResult)执行语句并处理返回值 -
Uses of SQLFunction in cc.carm.lib.easysql.api.action.query
Methods in cc.carm.lib.easysql.api.action.query with parameters of type SQLFunction Modifier and Type Method Description default <R> RQueryAction. executeFunction(@NotNull SQLFunction<@NotNull SQLQuery,R> function, R defaultResult) -
Uses of SQLFunction in cc.carm.lib.easysql.api.function
Methods in cc.carm.lib.easysql.api.function that return SQLFunction Modifier and Type Method Description default <V> SQLFunction<V,R>SQLFunction. compose(@NotNull SQLFunction<? super V,? extends T> before)default <V> SQLFunction<T,V>SQLFunction. then(@NotNull SQLFunction<? super R,? extends V> after)Methods in cc.carm.lib.easysql.api.function with parameters of type SQLFunction Modifier and Type Method Description default <V> SQLFunction<V,R>SQLFunction. compose(@NotNull SQLFunction<? super V,? extends T> before)default <V> SQLFunction<T,V>SQLFunction. then(@NotNull SQLFunction<? super R,? extends V> after)
-