Package org.anchoranalysis.core.functional.checked
package org.anchoranalysis.core.functional.checked
Versions of many functional-interfaces in
java.util.function
that throw
checked-exceptions.-
InterfacesClassDescriptionCheckedBiConsumer<S,
T, E extends Exception> LikeBiConsumer
but can also throw a checked exception.CheckedBiFunction<S,T, V, E extends Exception> LikeBiFunction
but can also throw a checked exception.CheckedBooleanSupplier<E extends Exception>LikeBooleanSupplier
but can also throw an exception.CheckedConsumer<S,E extends Exception> Consumes a value and throws an exception.CheckedFunction<S,V, E extends Exception> LikeFunction
but can also thrown an exception.CheckedFunctionWithInt<S,V, E extends Exception> LikeFunctionWithInt
but can also throw a checked exception.CheckedIntConsumer<E extends Exception>Consumes anint
and throws an exception.CheckedIntFunction<T,E extends Exception> LikeIntFunction
but can also thrown an exception.CheckedPredicate<T,E extends Exception> LikePredicate
but can also throw an exception.CheckedRunnable<E extends Exception>LikeRunnable
but can also throw an exception.CheckedSupplier<T,E extends Exception> LikeSupplier
but can also throw an exception.CheckedToDoubleBiFunction<T,U, E extends Exception> LikeToDoubleBiFunction
but can also thrown an exception.CheckedToDoubleFunction<T,E extends Exception> LikeToDoubleFunction
but can also thrown an exception.CheckedToIntFunction<S,E extends Exception> LikeToIntFunction
but can also thrown an exception.CheckedUnaryOperator<T,E extends Exception> Like aUnaryOperator
but allows an exception to be thrown.