Package org.apache.commons.collections
Interface Closure
- 
- All Known Implementing Classes:
 ChainedClosure,ExceptionClosure,ForClosure,IfClosure,NOPClosure,SwitchClosure,TransformerClosure,WhileClosure
@Deprecated(since="2021-04-30") public interface ClosureDeprecated.Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.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 invokation and for/while loops.- Since:
 - Commons Collections 1.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidexecute(java.lang.Object input)Deprecated.Performs an action on the specified input object. 
 - 
 
- 
- 
Method Detail
- 
execute
void execute(java.lang.Object 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
 
 - 
 
 -