ChainedClosure
, ExceptionClosure
, ForClosure
, IfClosure
, NOPClosure
, SwitchClosure
, TransformerClosure
, WhileClosure
public interface Closure
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 invokation and for/while loops.
Modifier and Type | Method | Description |
---|---|---|
void |
execute(java.lang.Object input) |
Performs an action on the specified input object.
|
void execute(java.lang.Object input)
input
- the input to execute onjava.lang.ClassCastException
- (runtime) if the input is the wrong classjava.lang.IllegalArgumentException
- (runtime) if the input is invalidFunctorException
- (runtime) if any other error occursCopyright © 2001-2017 Apache Software Foundation. All Rights Reserved.