|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.collections.collection.AbstractCollectionDecorator org.apache.commons.collections.collection.AbstractSerializableCollectionDecorator org.apache.commons.collections.collection.TransformedCollection
public class TransformedCollection
Decorates another Collection
to transform objects that are added.
The add methods are affected by this class. Thus objects must be removed or searched for using their transformed form. For example, if the transformation converts Strings to Integers, you must use the Integer form to remove objects.
This class is Serializable from Commons Collections 3.1.
Field Summary | |
---|---|
protected Transformer |
transformer
The transformer to use |
Fields inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator |
---|
collection |
Constructor Summary | |
---|---|
protected |
TransformedCollection(java.util.Collection coll,
Transformer transformer)
Constructor that wraps (not copies). |
Method Summary | |
---|---|
boolean |
add(java.lang.Object object)
|
boolean |
addAll(java.util.Collection coll)
|
static java.util.Collection |
decorate(java.util.Collection coll,
Transformer transformer)
Factory method to create a transforming collection. |
protected java.util.Collection |
transform(java.util.Collection coll)
Transforms a collection. |
protected java.lang.Object |
transform(java.lang.Object object)
Transforms an object. |
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator |
---|
clear, contains, containsAll, equals, getCollection, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected final Transformer transformer
Constructor Detail |
---|
protected TransformedCollection(java.util.Collection coll, Transformer transformer)
If there are any elements already in the collection being decorated, they are NOT transformed.
coll
- the collection to decorate, must not be nulltransformer
- the transformer to use for conversion, must not be null
java.lang.IllegalArgumentException
- if collection or transformer is nullMethod Detail |
---|
public static java.util.Collection decorate(java.util.Collection coll, Transformer transformer)
If there are any elements already in the collection being decorated, they are NOT transformed.
coll
- the collection to decorate, must not be nulltransformer
- the transformer to use for conversion, must not be null
java.lang.IllegalArgumentException
- if collection or transformer is nullprotected java.lang.Object transform(java.lang.Object object)
The transformer itself may throw an exception if necessary.
object
- the object to transform
protected java.util.Collection transform(java.util.Collection coll)
The transformer itself may throw an exception if necessary.
coll
- the collection to transform
public boolean add(java.lang.Object object)
add
in interface java.util.Collection
add
in class AbstractCollectionDecorator
public boolean addAll(java.util.Collection coll)
addAll
in interface java.util.Collection
addAll
in class AbstractCollectionDecorator
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |