Class AbstractCollectionDecorator
- java.lang.Object
-
- org.apache.commons.collections.collection.AbstractCollectionDecorator
-
- All Implemented Interfaces:
java.lang.Iterable,java.util.Collection
- Direct Known Subclasses:
AbstractBagDecorator,AbstractBufferDecorator,AbstractDualBidiMap.View,AbstractListDecorator,AbstractSerializableCollectionDecorator,AbstractSetDecorator
public abstract class AbstractCollectionDecorator extends java.lang.Object implements java.util.CollectionDecorates anotherCollectionto provide additional behaviour.Each method call made on this
Collectionis forwarded to the decoratedCollection. This class is used as a framework on which to build to extensions such as synchronized and unmodifiable behaviour. The main advantage of decoration is that one decorator can wrap any implementation ofCollection, whereas sub-classing requires a new class to be written for each implementation.This implementation does not perform any special processing with
iterator(). Instead it simply returns the value from the wrapped collection. This may be undesirable, for example if you are trying to write an unmodifiable implementation it might provide a loophole.- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.CollectioncollectionThe collection being decorated
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractCollectionDecorator()Constructor only used in deserialization, do not use otherwise.protectedAbstractCollectionDecorator(java.util.Collection coll)Constructor that wraps (not copies).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(java.lang.Object object)booleanaddAll(java.util.Collection coll)voidclear()booleancontains(java.lang.Object object)booleancontainsAll(java.util.Collection coll)booleanequals(java.lang.Object object)protected java.util.CollectiongetCollection()Gets the collection being decorated.inthashCode()booleanisEmpty()java.util.Iteratoriterator()booleanremove(java.lang.Object object)booleanremoveAll(java.util.Collection coll)booleanretainAll(java.util.Collection coll)intsize()java.lang.Object[]toArray()java.lang.Object[]toArray(java.lang.Object[] object)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
AbstractCollectionDecorator
protected AbstractCollectionDecorator()
Constructor only used in deserialization, do not use otherwise.- Since:
- Commons Collections 3.1
-
AbstractCollectionDecorator
protected AbstractCollectionDecorator(java.util.Collection coll)
Constructor that wraps (not copies).- Parameters:
coll- the collection to decorate, must not be null- Throws:
java.lang.IllegalArgumentException- if the collection is null
-
-
Method Detail
-
getCollection
protected java.util.Collection getCollection()
Gets the collection being decorated.- Returns:
- the decorated collection
-
add
public boolean add(java.lang.Object object)
- Specified by:
addin interfacejava.util.Collection
-
addAll
public boolean addAll(java.util.Collection coll)
- Specified by:
addAllin interfacejava.util.Collection
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection
-
contains
public boolean contains(java.lang.Object object)
- Specified by:
containsin interfacejava.util.Collection
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Collection
-
iterator
public java.util.Iterator iterator()
- Specified by:
iteratorin interfacejava.util.Collection- Specified by:
iteratorin interfacejava.lang.Iterable
-
remove
public boolean remove(java.lang.Object object)
- Specified by:
removein interfacejava.util.Collection
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArrayin interfacejava.util.Collection
-
toArray
public java.lang.Object[] toArray(java.lang.Object[] object)
- Specified by:
toArrayin interfacejava.util.Collection
-
containsAll
public boolean containsAll(java.util.Collection coll)
- Specified by:
containsAllin interfacejava.util.Collection
-
removeAll
public boolean removeAll(java.util.Collection coll)
- Specified by:
removeAllin interfacejava.util.Collection
-
retainAll
public boolean retainAll(java.util.Collection coll)
- Specified by:
retainAllin interfacejava.util.Collection
-
equals
public boolean equals(java.lang.Object object)
- Specified by:
equalsin interfacejava.util.Collection- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfacejava.util.Collection- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-