| java.lang.Object org.apache.commons.collections.functors.TransformerClosure
TransformerClosure | public class TransformerClosure implements Closure,Serializable(Code) | | Closure implementation that calls a Transformer using the input object
and ignore the result.
since: Commons Collections 3.0 version: $Revision: 348444 $ $Date: 2005-11-23 14:06:56 +0000 (Wed, 23 Nov 2005) $ author: Stephen Colebourne |
TransformerClosure | public TransformerClosure(Transformer transformer)(Code) | | Constructor that performs no validation.
Use getInstance if you want that.
Parameters: transformer - the transformer to call, not null |
execute | public void execute(Object input)(Code) | | Executes the closure by calling the decorated transformer.
Parameters: input - the input object |
getInstance | public static Closure getInstance(Transformer transformer)(Code) | | Factory method that performs validation.
A null transformer will return the NOPClosure .
Parameters: transformer - the transformer to call, null means nop the transformer closure |
getTransformer | public Transformer getTransformer()(Code) | | Gets the transformer.
the transformer since: Commons Collections 3.1 |
|
|