Uses of Class
net.sf.collections15.functors.transformer.ChainedTransformer

Packages that use ChainedTransformer
net.sf.collections15.functors.transformer This package provides implementations and a utility library for the Transformer interface. 
 

Uses of ChainedTransformer in net.sf.collections15.functors.transformer
 

Methods in net.sf.collections15.functors.transformer that return ChainedTransformer
<T> ChainedTransformer<I,O,T>
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 Transformers in this chain, and then transforms the result through the specified Transformer.
static
<I,M,O> ChainedTransformer<I,M,O>
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 Transformers.
<T> ChainedTransformer<T,I,O>
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 Transformers in this chain.
 



Copyright © 2001-2005 SourceForge.net. All Rights Reserved.