Interface FailableBiConsumer<T,U,E extends java.lang.Throwable>
-
- Type Parameters:
T- Consumed type 1.U- Consumed type 2.E- Thrown exception.
- 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 interface FailableBiConsumer<T,U,E extends java.lang.Throwable>A functional interface likeBiConsumerthat declares aThrowable.- Since:
- 3.11
-
-
Field Summary
Fields Modifier and Type Field Description static FailableBiConsumerNOPNOP singleton
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T t, U u)Accepts the consumer.default FailableBiConsumer<T,U,E>andThen(FailableBiConsumer<? super T,? super U,E> after)Returns a composedFailableBiConsumerlikeBiConsumer.andThen(BiConsumer).static <T,U,E extends java.lang.Throwable>
FailableBiConsumer<T,U,E>nop()Returns The NOP singleton.
-
-
-
Field Detail
-
NOP
static final FailableBiConsumer NOP
NOP singleton
-
-
Method Detail
-
nop
static <T,U,E extends java.lang.Throwable> FailableBiConsumer<T,U,E> nop()
Returns The NOP singleton.- Type Parameters:
T- Consumed type 1.U- Consumed type 2.E- Thrown exception.- Returns:
- The NOP singleton.
-
andThen
default FailableBiConsumer<T,U,E> andThen(FailableBiConsumer<? super T,? super U,E> after)
Returns a composedFailableBiConsumerlikeBiConsumer.andThen(BiConsumer).- Parameters:
after- the operation to perform after this one.- Returns:
- a composed
FailableBiConsumerlikeBiConsumer.andThen(BiConsumer). - Throws:
java.lang.NullPointerException- whenafteris null.
-
-