T - the type that the closure acts on
public interface Closure<T>
A Closure represents 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.
void execute(T input)
input - the input to execute on
ClassCastException - (runtime) if the input is the wrong class
IllegalArgumentException - (runtime) if the input is invalid
FunctorException - (runtime) if any other error occurs