Package cc.carm.lib.easysql.api.function
Interface SQLHandler<T>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SQLHandler<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
accept(T t)
default @NotNull SQLHandler<T>
andThen(@NotNull SQLHandler<? super T> after)
-
-
-
Method Detail
-
accept
void accept(@NotNull T t) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
andThen
@NotNull @Contract(pure=true) default @NotNull SQLHandler<T> andThen(@NotNull @NotNull SQLHandler<? super T> after)
-
-