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