Module net.luis.utils
Package net.luis.utils.function.throwable
package net.luis.utils.function.throwable
-
InterfacesClassDescriptionThrowableBiConsumer<T,
U, X extends Throwable> Functional interface that takes two arguments and consumes them.
TheFunctionalInterface
method isThrowableBiConsumer.accept(Object, Object)
.
The class is equivalent toBiConsumer
, but the functional method can throw a checked exception.ThrowableBiFunction<T,U, R, X extends Throwable> Functional interface that takes two arguments and returns a value.
TheFunctionalInterface
method isThrowableBiFunction.apply(Object, Object)
.
The class is equivalent toBiFunction
, but the functional method can throw a checked exception.ThrowableConsumer<T,X extends Throwable> Functional interface that takes one argument and consumes it.
TheFunctionalInterface
method isThrowableConsumer.accept(Object)
.
The class is equivalent toConsumer
, but the functional method can throw a checked exception.ThrowableFunction<T,R, X extends Throwable> Functional interface that takes an argument and returns a value.
TheFunctionalInterface
method isThrowableFunction.apply(Object)
.
The class is equivalent toFunction
, but the functional method can throw a checked exception.ThrowableQuadConsumer<T,U, V, W, X extends Throwable> Functional interface that takes four arguments and consumes them.
TheFunctionalInterface
method isThrowableQuadConsumer.accept(Object, Object, Object, Object)
.
The class is equivalent toQuadConsumer
, but the functional method can throw a checked exception.ThrowableQuadFunction<T,U, V, W, R, X extends Throwable> Functional interface that takes four arguments and returns a value.
TheFunctionalInterface
method isThrowableQuadFunction.apply(Object, Object, Object, Object)
.
The class is equivalent toQuadFunction
, but the functional method can throw a checked exception.ThrowableSupplier<T,X extends Throwable> Functional interface that takes no arguments and returns a value.
TheFunctionalInterface
method isThrowableSupplier.get()
.
The class is equivalent toSupplier
, but the functional method can throw a checked exception.ThrowableTriConsumer<T,U, V, X extends Throwable> Functional interface that takes three arguments and consumes them.
TheFunctionalInterface
method isThrowableTriConsumer.accept(Object, Object, Object)
.
The class is equivalent toTriConsumer
, but the functional method can throw a checked exception.ThrowableTriFunction<T,U, V, R, X extends Throwable> Functional interface that takes three arguments and returns a value.
TheFunctionalInterface
method isThrowableTriFunction.apply(Object, Object, Object)
.
The class is equivalent toTriFunction
, but the functional method can throw a checked exception.