Uses of Interface
org.n52.janmayen.function.ThrowingBiConsumer
-
Packages that use ThrowingBiConsumer Package Description org.n52.janmayen.exception org.n52.janmayen.function -
-
Uses of ThrowingBiConsumer in org.n52.janmayen.exception
Methods in org.n52.janmayen.exception with parameters of type ThrowingBiConsumer Modifier and Type Method Description <T,U,X extends Exception>
voidCompositeException. accept(ThrowingBiConsumer<T,U,X> consumer, T t, U u)<T,U,X extends Exception>
BiConsumer<T,U>CompositeException. wrapConsumer(ThrowingBiConsumer<T,U,X> consumer) -
Uses of ThrowingBiConsumer in org.n52.janmayen.function
Methods in org.n52.janmayen.function that return ThrowingBiConsumer Modifier and Type Method Description default ThrowingBiConsumer<A,B,X>ThrowingBiConsumer. andThen(ThrowingBiConsumer<? super A,? super B,? extends X> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default ThrowingBiConsumer<B,C,X>ThrowingTriConsumer. curryFirst(A a)default ThrowingBiConsumer<A,C,X>ThrowingTriConsumer. currySecond(B b)default ThrowingBiConsumer<A,B,X>ThrowingTriConsumer. curryThird(C c)default <T> ThrowingBiConsumer<T,B,X>ThrowingBiConsumer. mapFirst(ThrowingFunction<? super T,? extends A,X> fun)Change the first parameter using the supplied mapper.default <T> ThrowingBiConsumer<A,T,X>ThrowingBiConsumer. mapSecond(ThrowingFunction<? super T,? extends B,X> fun)Change the second parameter using the supplied mapper.Methods in org.n52.janmayen.function with parameters of type ThrowingBiConsumer Modifier and Type Method Description default ThrowingBiConsumer<A,B,X>ThrowingBiConsumer. andThen(ThrowingBiConsumer<? super A,? super B,? extends X> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.
-