Java org.apache.commons.collections TransformerUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections TransformerUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections TransformerUtils.

The text is from its open source code.

Method

TransformerchainedTransformer(Transformer[] transformers)
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
TransformerchainedTransformer(Collection transformers)
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
TransformerconstantTransformer(Object constantToReturn)
Creates a Transformer that will return the same object each time the transformer is used.
TransformerinvokerTransformer(String methodName, Class[] paramTypes, Object[] args)
Gets a Transformer that invokes a method on the input object.
TransformerinvokerTransformer(String methodName)
Gets a Transformer that invokes a method on the input object.
TransformermapTransformer(Map map)
Creates a Transformer that uses the passed in Map to transform the input object (as a simple lookup).
TransformernopTransformer()
Gets a transformer that returns the input object.