Uses of Class
org.apache.commons.collections4.collection.TransformedCollection
Packages that use TransformedCollection
Package
Description
Implementations of the
Collection interface.Implements the
List interface.Implements the
MultiSet interface.Implements the
Queue interface.-
Uses of TransformedCollection in org.apache.commons.collections4.bag
Subclasses of TransformedCollection in org.apache.commons.collections4.bagModifier and TypeClassDescriptionclassDeprecated.classDeprecated.Since 4.6.0, useTransformedSortedMultiSetinstead. -
Uses of TransformedCollection in org.apache.commons.collections4.collection
Methods in org.apache.commons.collections4.collection that return TransformedCollectionModifier and TypeMethodDescriptionstatic <E> TransformedCollection<E> TransformedCollection.transformedCollection(Collection<E> collection, Transformer<? super E, ? extends E> transformer) Creates 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) Creates a transforming collection. -
Uses of TransformedCollection in org.apache.commons.collections4.list
Subclasses of TransformedCollection in org.apache.commons.collections4.listModifier and TypeClassDescriptionclassDecorates anotherListto transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.multiset
Subclasses of TransformedCollection in org.apache.commons.collections4.multisetModifier and TypeClassDescriptionclassDecorates anotherMultiSetto transform objects that are added.classDecorates anotherSortedMultiSetto transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.queue
Subclasses of TransformedCollection in org.apache.commons.collections4.queueModifier and TypeClassDescriptionclassDecorates anotherQueueto transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.set
Subclasses of TransformedCollection in org.apache.commons.collections4.setModifier and TypeClassDescriptionclassDecorates anotherNavigableSetto transform objects that are added.classDecorates anotherSetto transform objects that are added.classDecorates anotherSortedSetto transform objects that are added.
TransformedMultiSetinstead.