Methods in net.sf.collections15.functors.transformer that return ChainedTransformer |
|
ChainedTransformer.append(Transformer<? super O,T> transformer)
Appends a specified Transformer to the end of the chain,
resulting in a new ChainedTransformer that transforms an
input object through the existing Transformer s in this
chain, and then transforms the result through the specified
Transformer . |
static
|
ChainedTransformer.getInstance(Transformer<? super I,? extends M> firstTransformer,
Transformer<? super M,? extends O> secondTransformer)
Returns a new ChainedTransformer instance that chains
together the two specified Transformer s. |
|
ChainedTransformer.prepend(Transformer<T,? extends I> transformer)
Prepends a specified Transformer to the start of the chain,
resulting in a new ChainedTransformer that transforms an
input object through the specified Transformer , and then
transforms the result through the existing Transformer s in
this chain. |