Package org.apache.camel.util.function
package org.apache.camel.util.function
Function utility classes
-
ClassDescriptionPredicate helpers, inspired by http://minborgsjavapot.blogspot.it/2016/03/put-your-java-8-method-references-to.htmlThrowingBiConsumer<I1, I2, T extends Throwable>Represents an operation that accepts two input arguments and returns no result and may thrown an exception.ThrowingBiFunction<I1, I2, R, T extends Throwable>Represents a function that accepts two arguments, produces a result and may thrown an exception.ThrowingConsumer<I, T extends Throwable>Represents an operation that accepts a single input argument and may thrown an exception.ThrowingFunction<I, R, T extends Throwable>Represents a function that accepts a single arguments, produces a result and may throw an exception.ThrowingRunnable<T extends Throwable>Represents a
Runnablelike interface that may thrown an exception.ThrowingSupplier<V, T extends Throwable>Represents a supplier of results that may thrown an exception.ThrowingToLongFunction<I, T extends Throwable>Represents a function that produces a long-valued result and may thrown an exception.ThrowingTriConsumer<I1, I2, I3, T extends Throwable>Represents an operation that accepts three input arguments and returns no result and may thrown an exception.TriConsumer<I1,I2, I3> Represents an operation that accepts three input arguments and returns no result.VoidFunction<I>Represents a void function that accepts a single arguments.