Package org.apache.commons.collections4
Interface Closure<T>
-
- Type Parameters:
T- the type of the input to the operation.
- All Superinterfaces:
java.util.function.Consumer<T>
- All Known Implementing Classes:
CatchAndRethrowClosure,ChainedClosure,ExceptionClosure,ForClosure,IfClosure,NOPClosure,SwitchClosure,TransformerClosure,WhileClosure
@Deprecated public interface Closure<T> extends java.util.function.Consumer<T>
Deprecated.UseConsumer.Defines a functor interface implemented by classes that do something.A
Closurerepresents a block of code which is executed from inside some block, function or iteration. It operates an input object.Standard implementations of common closures are provided by
ClosureUtils. These include method invocation and for/while loops.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidaccept(T input)Deprecated.voidexecute(T input)Deprecated.Performs an action on the specified input object.
-
-
-
Method Detail
-
accept
default void accept(T input)
Deprecated.- Specified by:
acceptin interfacejava.util.function.Consumer<T>
-
execute
void execute(T input)
Deprecated.Performs an action on the specified input object.- Parameters:
input- the input to execute on- Throws:
java.lang.ClassCastException- (runtime) if the input is the wrong classjava.lang.IllegalArgumentException- (runtime) if the input is invalidFunctorException- (runtime) if any other error occurs
-
-