Uses of Class
org.apache.commons.collections4.collection.TransformedCollection
Package
Description
Implementations of the
Collection
interface.Implements the
List
interface.Implements the
Queue
interface.-
Uses of TransformedCollection in org.apache.commons.collections4.bag
-
Uses of TransformedCollection in org.apache.commons.collections4.collection
Modifier and TypeMethodDescriptionstatic <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
Modifier and TypeClassDescriptionclass
Decorates anotherList
to transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.queue
Modifier and TypeClassDescriptionclass
Decorates anotherQueue
to transform objects that are added. -
Uses of TransformedCollection in org.apache.commons.collections4.set
Modifier and TypeClassDescriptionclass
Decorates anotherNavigableSet
to transform objects that are added.class
Decorates anotherSet
to transform objects that are added.class
Decorates anotherSortedSet
to transform objects that are added.