Package com.github.tadukoo.util.functional.consumer
package com.github.tadukoo.util.functional.consumer
Contains Functional interfaces for Consumers that are not present in default Java.
-
ClassDescriptionThrowingConsumer<A,
T extends Throwable> ThrowingConsumer10<A,B, C, D, E, F, G, H, I, J, T extends Throwable> A consumer that takes ten arguments, returns a result, and may throw aThrowable
.ThrowingConsumer2<A,B, T extends Throwable> A better version of Java'sBiConsumer
interface that allows for the consumers to throw whateverThrowable
is specified.ThrowingConsumer3<A,B, C, T extends Throwable> A consumer that takes three arguments, returns a result, and may throw aThrowable
.ThrowingConsumer4<A,B, C, D, T extends Throwable> A consumer that takes four arguments, returns a result, and may throw aThrowable
.ThrowingConsumer5<A,B, C, D, E, T extends Throwable> A consumer that takes five arguments, returns a result, and may throw aThrowable
.ThrowingConsumer6<A,B, C, D, E, F, T extends Throwable> A consumer that takes six arguments, returns a result, and may throw aThrowable
.ThrowingConsumer7<A,B, C, D, E, F, G, T extends Throwable> A consumer that takes seven arguments, returns a result, and may throw aThrowable
.ThrowingConsumer8<A,B, C, D, E, F, G, H, T extends Throwable> A consumer that takes eight arguments, returns a result, and may throw aThrowable
.ThrowingConsumer9<A,B, C, D, E, F, G, H, I, T extends Throwable> A consumer that takes nine arguments, returns a result, and may throw aThrowable
.