Class SynchronizedCollection
- java.lang.Object
 - 
- org.apache.commons.collections.collection.SynchronizedCollection
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,java.lang.Iterable,java.util.Collection
- Direct Known Subclasses:
 SynchronizedBag,SynchronizedBuffer,SynchronizedList,SynchronizedSet,SynchronizedSortedSet
public class SynchronizedCollection extends java.lang.Object implements java.util.Collection, java.io.SerializableDecorates anotherCollectionto synchronize its behaviour for a multi-threaded environment.Iterators must be manually synchronized:
synchronized (coll) { Iterator it = coll.iterator(); // do stuff with iterator }This class is Serializable from Commons Collections 3.1.
- Since:
 - Commons Collections 3.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Static 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)static java.util.Collectiondecorate(java.util.Collection coll)Factory method to create a synchronized collection.booleanequals(java.lang.Object object)inthashCode()booleanisEmpty()java.util.Iteratoriterator()Iterators must be manually synchronized.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() 
 - 
 
- 
- 
Method Detail
- 
decorate
public static java.util.Collection decorate(java.util.Collection coll)
Factory method to create a synchronized collection.- Parameters:
 coll- the collection to decorate, must not be null- Returns:
 - a new synchronized collection
 - Throws:
 java.lang.IllegalArgumentException- if collection is null
 
- 
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
 
- 
containsAll
public boolean containsAll(java.util.Collection coll)
- Specified by:
 containsAllin interfacejava.util.Collection
 
- 
isEmpty
public boolean isEmpty()
- Specified by:
 isEmptyin interfacejava.util.Collection
 
- 
iterator
public java.util.Iterator iterator()
Iterators must be manually synchronized.synchronized (coll) { Iterator it = coll.iterator(); // do stuff with iterator }- Specified by:
 iteratorin interfacejava.util.Collection- Specified by:
 iteratorin interfacejava.lang.Iterable- Returns:
 - an iterator that must be manually synchronized on the 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
 
- 
remove
public boolean remove(java.lang.Object object)
- Specified by:
 removein 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
 
- 
size
public int size()
- Specified by:
 sizein 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
 
 - 
 
 -