Uses of Interface
org.springframework.util.function.ThrowingBiFunction
Packages that use ThrowingBiFunction
Package
Description
Useful generic
java.util.function helper classes.-
Uses of ThrowingBiFunction in org.springframework.util.function
Methods in org.springframework.util.function that return ThrowingBiFunctionModifier and TypeMethodDescriptionstatic <T,U, R> ThrowingBiFunction<T, U, R> ThrowingBiFunction.of(ThrowingBiFunction<T, U, R> function) Lambda friendly convenience method that can be used to create aThrowingBiFunctionwhere theapply(Object, Object)method wraps any checked exception thrown by the supplied lambda expression or method reference.static <T,U, R> ThrowingBiFunction<T, U, R> ThrowingBiFunction.of(ThrowingBiFunction<T, U, R> function, BiFunction<String, Exception, RuntimeException> exceptionWrapper) Lambda friendly convenience method that can be used to create aThrowingBiFunctionwhere theapply(Object, Object)method wraps any thrown checked exceptions using the givenexceptionWrapper.default ThrowingBiFunction<T,U, R> ThrowingBiFunction.throwing(BiFunction<String, Exception, RuntimeException> exceptionWrapper) Return a newThrowingBiFunctionwhere theapply(Object, Object)method wraps any thrown checked exceptions using the givenexceptionWrapper.Methods in org.springframework.util.function with parameters of type ThrowingBiFunctionModifier and TypeMethodDescriptionstatic <T,U, R> ThrowingBiFunction<T, U, R> ThrowingBiFunction.of(ThrowingBiFunction<T, U, R> function) Lambda friendly convenience method that can be used to create aThrowingBiFunctionwhere theapply(Object, Object)method wraps any checked exception thrown by the supplied lambda expression or method reference.static <T,U, R> ThrowingBiFunction<T, U, R> ThrowingBiFunction.of(ThrowingBiFunction<T, U, R> function, BiFunction<String, Exception, RuntimeException> exceptionWrapper) Lambda friendly convenience method that can be used to create aThrowingBiFunctionwhere theapply(Object, Object)method wraps any thrown checked exceptions using the givenexceptionWrapper.