java.util.function.BiConsumer<T,U>, ThrowingBiConsumer<B,java.sql.ResultSet>@FunctionalInterface public interface Enricher<B> extends ThrowingBiConsumer<B,java.sql.ResultSet>
| Modifier and Type | Method | Description |
|---|---|---|
void |
acceptThrows(B bean,
java.sql.ResultSet rs) |
A method that accepts two arguments and allows for an Exception to be throws.
|
default Enricher<B> |
andThen(Enricher<B> after) |
Chains another enricher to this one to be called upon completion.
|
acceptvoid acceptThrows(B bean, java.sql.ResultSet rs) throws java.sql.SQLException
ThrowingBiConsumeracceptThrows in interface ThrowingBiConsumer<B,java.sql.ResultSet>bean - type of the first argument to operationrs - type of second argument to operationjava.sql.SQLException