Package | Description |
---|---|
org.apache.commons.collections4.bag | |
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 |
Modifier and Type | Class and Description |
---|---|
class |
TransformedBag<E>
Decorates another
Bag to transform objects that are added. |
class |
TransformedSortedBag<E>
Decorates another
SortedBag to transform objects that are added. |
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
TransformedList<E>
Decorates another
List to transform objects that are added. |
Modifier and Type | Class and Description |
---|---|
class |
TransformedQueue<E>
Decorates another
Queue to transform objects that are added. |
Modifier and Type | Class and Description |
---|---|
class |
TransformedNavigableSet<E>
Decorates another
NavigableSet to transform objects that are added. |
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–2019 The Apache Software Foundation. All rights reserved.