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 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)