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