Uses of Interface
org.apache.commons.collections.Transformer

Packages that use Transformer
org.apache.commons.collections Java Collections Framework extensions. 
org.apache.commons.collections.comparators Contains concrete Comparator implementations. 
org.apache.commons.collections.iterators Contains concrete Iterator implementations and utilities. 
 

Uses of Transformer in org.apache.commons.collections
 

Methods in org.apache.commons.collections with parameters of type Transformer
static java.util.Iterator IteratorUtils.transformedIterator(java.util.Iterator iterator, Transformer transform)
          Gets an iterator that transforms the elements of another iterator.
static java.util.Comparator ComparatorUtils.transformedComparator(java.util.Comparator comparator, Transformer transformer)
          Gets a Comparator that passes transformed objects to the given comparator.
static void CollectionUtils.transform(java.util.Collection collection, Transformer transformer)
          Transform the collection by applying a Transformer to each element.
static java.util.Collection CollectionUtils.collect(java.util.Collection inputCollection, Transformer transformer)
          Transforms all elements from inputCollection with the given transformer and adds them to the outputCollection.
static java.util.Collection CollectionUtils.collect(java.util.Iterator inputIterator, Transformer transformer)
          Transforms all elements from the inputIterator with the given transformer and adds them to the outputCollection.
static java.util.Collection CollectionUtils.collect(java.util.Collection inputCollection, Transformer transformer, java.util.Collection outputCollection)
          Transforms all elements from inputCollection with the given transformer and adds them to the outputCollection.
static java.util.Collection CollectionUtils.collect(java.util.Iterator inputIterator, Transformer transformer, java.util.Collection outputCollection)
          Transforms all elements from the inputIterator with the given transformer and adds them to the outputCollection.
 

Constructors in org.apache.commons.collections with parameters of type Transformer
TransformIterator(java.util.Iterator iterator, Transformer transformer)
          Deprecated. Constructs a new TransformIterator that will use the given iterator and transformer.
 

Uses of Transformer in org.apache.commons.collections.comparators
 

Constructors in org.apache.commons.collections.comparators with parameters of type Transformer
TransformingComparator(Transformer transformer)
          Constructs an instance with the given Transformer and a ComparableComparator.
TransformingComparator(Transformer transformer, java.util.Comparator decorated)
          Constructs an instance with the given Transformer and Comparator
 

Uses of Transformer in org.apache.commons.collections.iterators
 

Methods in org.apache.commons.collections.iterators that return Transformer
 Transformer TransformIterator.getTransformer()
          Getter for property transformer.
 

Methods in org.apache.commons.collections.iterators with parameters of type Transformer
 void TransformIterator.setTransformer(Transformer transformer)
          Setter for property transformer.
 

Constructors in org.apache.commons.collections.iterators with parameters of type Transformer
TransformIterator(java.util.Iterator iterator, Transformer transformer)
          Constructs a new TransformIterator that will use the given iterator and transformer.
 



Copyright © 2001-2004 The Apache Software Foundation. All Rights Reserved.