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 theCollectioninterface.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.queue This package contains implementations for theQueueinterface.org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces. -
-
Uses of TransformedCollection in org.apache.commons.collections4.bag
Subclasses of TransformedCollection in org.apache.commons.collections4.bag Modifier and Type Class Description classTransformedBag<E>Decorates anotherBagto transform objects that are added.classTransformedSortedBag<E>Decorates anotherSortedBagto 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(java.util.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(java.util.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 classTransformedList<E>Decorates anotherListto 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 classTransformedQueue<E>Decorates anotherQueueto 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 classTransformedNavigableSet<E>Decorates anotherNavigableSetto transform objects that are added.classTransformedSet<E>Decorates anotherSetto transform objects that are added.classTransformedSortedSet<E>Decorates anotherSortedSetto transform objects that are added.
-