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 |
This package contains implementations of the
Set ,
SortedSet and
NavigableSet interfaces. |
Modifier and Type | Class | 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 | 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.
|
Modifier and Type | Class | Description |
---|---|---|
class |
TransformedList<E> |
Decorates another
List to transform objects that are added. |
Modifier and Type | Class | Description |
---|---|---|
class |
TransformedQueue<E> |
Decorates another
Queue to transform objects that are added. |
Modifier and Type | Class | 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 - Apache Software Foundation