Uses of Interface
org.n52.janmayen.function.ThrowingConsumer
-
Packages that use ThrowingConsumer Package Description org.n52.janmayen org.n52.janmayen.exception org.n52.janmayen.function org.n52.janmayen.stream -
-
Uses of ThrowingConsumer in org.n52.janmayen
Methods in org.n52.janmayen with parameters of type ThrowingConsumer Modifier and Type Method Description default voidThrowingIterator. forEachRemaining(ThrowingConsumer<? super T,? extends X> action)Performs the given action for each remaining element until all elements have been processed or the action throws an exception. -
Uses of ThrowingConsumer in org.n52.janmayen.exception
Methods in org.n52.janmayen.exception with parameters of type ThrowingConsumer Modifier and Type Method Description <T,X extends Exception>
voidCompositeException. accept(ThrowingConsumer<T,X> consumer, T t)<T,X extends Exception>
Consumer<T>CompositeException. wrapConsumer(ThrowingConsumer<T,X> consumer) -
Uses of ThrowingConsumer in org.n52.janmayen.function
Methods in org.n52.janmayen.function that return ThrowingConsumer Modifier and Type Method Description default ThrowingConsumer<A,X>ThrowingConsumer. andThen(ThrowingConsumer<? super A,? extends X> after)Returns a composedConsumerthat performs, in sequence, this operation followed by theafteroperation.default ThrowingConsumer<B,X>ThrowingBiConsumer. curryFirst(A t)Get aThrowingConsumerby currying the first parameter.default ThrowingConsumer<A,X>ThrowingBiConsumer. currySecond(B u)GetThrowingConsumerby currying the second parameter.default <T> ThrowingConsumer<T,X>ThrowingConsumer. map(ThrowingFunction<? super T,? extends A,X> fun)Change the type of the parameter using the supplied mapperMethods in org.n52.janmayen.function with parameters of type ThrowingConsumer Modifier and Type Method Description default ThrowingConsumer<A,X>ThrowingConsumer. andThen(ThrowingConsumer<? super A,? extends X> after)Returns a composedConsumerthat performs, in sequence, this operation followed by theafteroperation. -
Uses of ThrowingConsumer in org.n52.janmayen.stream
Methods in org.n52.janmayen.stream with parameters of type ThrowingConsumer Modifier and Type Method Description static <T,E extends Exception,X extends CompositeException>
Collector<T,?,X>MoreCollectors. toCompositeException(Supplier<X> supplier, ThrowingConsumer<? super T,E> fun)static <T,E extends Exception>
Collector<T,?,CompositeException>MoreCollectors. toCompositeException(ThrowingConsumer<? super T,E> fun)
-