Package org.omegazero.common.util.function
package org.omegazero.common.util.function
Contains functional interfaces.
-
InterfacesClassDescriptionSimilar to a
Consumer
, except that the functionalaccept
method is allowed to throw the specified exception.Similar to aFunction
, except that the functionalapply
method is allowed to throw the specified exception.SpecificThrowingRunnable<E extends Throwable>Similar to aRunnable
, except that the functionalrun
method is allowed to throw the specified exception.Similar to aSupplier
, except that the functionalget
method is allowed to throw the specified exception.Similar to aConsumer
, except that the functionalaccept
method is allowed to throw any exception.ThrowingFunction<T,R> Similar to aFunction
, except that the functionalapply
method is allowed to throw any exception.Similar to aRunnable
, except that the functionalrun
method is allowed to throw any exception.Similar to aSupplier
, except that the functionalget
method is allowed to throw any exception.