| Modifier and Type | Method and Description |
|---|---|
default SQLBiConsumer<T,U> |
SQLBiConsumer.andThen(SQLBiConsumer<? super T,? super U> after)
Returns a composed
SQLBiConsumer that performs, in sequence, this operation followed by the after operation. |
static <T,U> SQLBiConsumer<T,U> |
SQLBiConsumer.checked(BiConsumer<? super T,? super U> operation)
Returns an
SQLBiConsumer that performs the operation operation, and unwraps any UncheckedSQLException that is thrown by
throwing its cause. |
| Modifier and Type | Method and Description |
|---|---|
default SQLBiConsumer<T,U> |
SQLBiConsumer.andThen(SQLBiConsumer<? super T,? super U> after)
Returns a composed
SQLBiConsumer that performs, in sequence, this operation followed by the after operation. |
static <T,U> BiConsumer<T,U> |
SQLBiConsumer.unchecked(SQLBiConsumer<? super T,? super U> operation)
Returns a
BiConsumer that performs the operation operation, and wraps any SQLException that is thrown in an
UncheckedSQLException. |
Copyright © 2017. All rights reserved.