Uses of Class
org.apache.commons.collections4.collection.TransformedCollection

Packages that use TransformedCollection
org.apache.commons.collections4.bag This package contains implementations of the Bag and SortedBag interfaces. 
org.apache.commons.collections4.collection This package contains implementations of the Collection interface. 
org.apache.commons.collections4.list This package contains implementations of the List interface. 
org.apache.commons.collections4.queue This package contains implementations for the Queue interface. 
org.apache.commons.collections4.set This package contains implementations of the Set and SortedSet interfaces. 
 

Uses of TransformedCollection in org.apache.commons.collections4.bag
 

Subclasses of TransformedCollection in org.apache.commons.collections4.bag
 class TransformedBag<E>
          Decorates another Bag to transform objects that are added.
 class TransformedSortedBag<E>
          Decorates another SortedBag to transform objects that are added.
 

Uses of TransformedCollection in org.apache.commons.collections4.collection
 

Methods in org.apache.commons.collections4.collection that return TransformedCollection
static
<E> TransformedCollection<E>
TransformedCollection.transformedCollection(Collection<E> collection, Transformer<? super E,? extends E> transformer)
          Factory method to create a transforming collection that will transform existing contents of the specified collection.
static
<E> TransformedCollection<E>
TransformedCollection.transformingCollection(Collection<E> coll, Transformer<? super E,? extends E> transformer)
          Factory method to create a transforming collection.
 

Uses of TransformedCollection in org.apache.commons.collections4.list
 

Subclasses of TransformedCollection in org.apache.commons.collections4.list
 class TransformedList<E>
          Decorates another List to transform objects that are added.
 

Uses of TransformedCollection in org.apache.commons.collections4.queue
 

Subclasses of TransformedCollection in org.apache.commons.collections4.queue
 class TransformedQueue<E>
          Decorates another Queue to transform objects that are added.
 

Uses of TransformedCollection in org.apache.commons.collections4.set
 

Subclasses of TransformedCollection in org.apache.commons.collections4.set
 class TransformedSet<E>
          Decorates another Set to transform objects that are added.
 class TransformedSortedSet<E>
          Decorates another SortedSet to transform objects that are added.
 



Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.