Uses of Class
org.apache.commons.collections4.collection.TransformedCollection
-
Packages that use TransformedCollection Package Description org.apache.commons.collections4.bag org.apache.commons.collections4.collection This package contains implementations of theCollection
interface.org.apache.commons.collections4.list This package contains implementations of theList
interface.org.apache.commons.collections4.queue This package contains implementations for theQueue
interface.org.apache.commons.collections4.set -
-
Uses of TransformedCollection in org.apache.commons.collections4.bag
Subclasses of TransformedCollection in org.apache.commons.collections4.bag Modifier and Type Class Description class
TransformedBag<E>
Decorates anotherBag
to transform objects that are added.class
TransformedSortedBag<E>
Decorates anotherSortedBag
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 Modifier and Type Method Description 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 Modifier and Type Class Description class
TransformedList<E>
Decorates anotherList
to transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.queue
Subclasses of TransformedCollection in org.apache.commons.collections4.queue Modifier and Type Class Description class
TransformedQueue<E>
Decorates anotherQueue
to transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.set
Subclasses of TransformedCollection in org.apache.commons.collections4.set Modifier and Type Class Description class
TransformedNavigableSet<E>
Decorates anotherNavigableSet
to transform objects that are added.class
TransformedSet<E>
Decorates anotherSet
to transform objects that are added.class
TransformedSortedSet<E>
Decorates anotherSortedSet
to transform objects that are added.
-