Interface ResultSetConsumer<R>

  • 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 ResultSetConsumer<R>
    • Method Detail

      • consume

        R consume​(ResultSet resultSet)
        Consumes the given data set and produces a result
        Parameters:
        resultSet - The ResultSet to consume
        Returns:
        R The resulting object