Package com.identityworksllc.iiq.common
Interface Functions.RowHandler
-
- Enclosing class:
- Functions
- 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 static interface Functions.RowHandler
A generic callback for doing result set row handling things
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(ResultSet resultSet)
Does something with the current row of the ResultSet provided
-
-
-
Method Detail
-
accept
void accept(ResultSet resultSet) throws SQLException, sailpoint.tools.GeneralException
Does something with the current row of the ResultSet provided- Parameters:
resultSet
- The ResultSet from which the current row should be extracted- Throws:
SQLException
- on JDBC errorssailpoint.tools.GeneralException
- on IIQ errors
-
-