Home » openjdk-7 » java » util » [javadoc | source]
java.util
static class: Collections.SynchronizedCollection [javadoc | source]
java.lang.Object
   java.util.Collections$SynchronizedCollection

All Implemented Interfaces:
    Collection, Serializable

Direct Known Subclasses:
    SynchronizedSet, SynchronizedSortedSet, SynchronizedRandomAccessList, SynchronizedList

Field Summary
final  Collection<E> c     
final  Object mutex     
Constructor:
 SynchronizedCollection(Collection<E> c) 
 SynchronizedCollection(Collection<E> c,
    Object mutex) 
Method from java.util.Collections$SynchronizedCollection Summary:
add,   addAll,   clear,   contains,   containsAll,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.Collections$SynchronizedCollection Detail:
 public boolean add(E e) 
 public boolean addAll(Collection<? extends E> coll) 
 public  void clear() 
 public boolean contains(Object o) 
 public boolean containsAll(Collection<?> coll) 
 public boolean isEmpty() 
 public Iterator<E> iterator() 
 public boolean remove(Object o) 
 public boolean removeAll(Collection<?> coll) 
 public boolean retainAll(Collection<?> coll) 
 public int size() 
 public Object[] toArray() 
 public T[] toArray(T[] a) 
 public String toString()