Class TransformerClosure<E>
- java.lang.Object
 - 
- org.apache.commons.collections4.functors.TransformerClosure<E>
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,Closure<E>
public class TransformerClosure<E> extends java.lang.Object implements Closure<E>, java.io.Serializable
Closure implementation that calls a Transformer using the input object and ignore the result.- Since:
 - 3.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TransformerClosure(Transformer<? super E,?> transformer)Constructor that performs no validation. 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute(E input)Executes the closure by calling the decorated transformer.Transformer<? super E,?>getTransformer()Gets the transformer.static <E> Closure<E>transformerClosure(Transformer<? super E,?> transformer)Factory method that performs validation. 
 - 
 
- 
- 
Constructor Detail
- 
TransformerClosure
public TransformerClosure(Transformer<? super E,?> transformer)
Constructor that performs no validation. UsetransformerClosureif you want that.- Parameters:
 transformer- the transformer to call, not null
 
 - 
 
- 
Method Detail
- 
transformerClosure
public static <E> Closure<E> transformerClosure(Transformer<? super E,?> transformer)
Factory method that performs validation.A null transformer will return the
NOPClosure.- Type Parameters:
 E- the type that the closure acts on- Parameters:
 transformer- the transformer to call, null means nop- Returns:
 - the 
transformerclosure 
 
- 
execute
public void execute(E input)
Executes the closure by calling the decorated transformer. 
- 
getTransformer
public Transformer<? super E,?> getTransformer()
Gets the transformer.- Returns:
 - the transformer
 - Since:
 - 3.1
 
 
 - 
 
 -