Package jdbc.stream
Class JdbcStream
- java.lang.Object
-
- jdbc.stream.JdbcStream
-
public class JdbcStream extends java.lang.ObjectJdbcStream is a Stream wrapper on top of the JDBC ResultSet. This class provides utility methods to convert the ResultSet into a Stream of ResultSet which opens up the Java Stream API to JDBC.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.stream.Stream<java.sql.ResultSet>stream(java.sql.ResultSet resultSet)Given a ResultSet, convert the ResultSet into a Stream
-