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

All Implemented Interfaces:
    List, Collection, Serializable

Direct Known Subclasses:
    SynchronizedRandomAccessList

Field Summary
final  List<E> list     
Fields inherited from java.util.Collections$SynchronizedCollection:
c,  mutex
Constructor:
 SynchronizedList(List<E> list) 
 SynchronizedList(List<E> list,
    Object mutex) 
Method from java.util.Collections$SynchronizedList Summary:
add,   addAll,   equals,   get,   hashCode,   indexOf,   lastIndexOf,   listIterator,   listIterator,   remove,   set,   subList
Methods from java.util.Collections$SynchronizedCollection:
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$SynchronizedList Detail:
 public  void add(int index,
    E element) 
 public boolean addAll(int index,
    Collection<? extends E> c) 
 public boolean equals(Object o) 
 public E get(int index) 
 public int hashCode() 
 public int indexOf(Object o) 
 public int lastIndexOf(Object o) 
 public ListIterator<E> listIterator() 
 public ListIterator<E> listIterator(int index) 
 public E remove(int index) 
 public E set(int index,
    E element) 
 public List<E> subList(int fromIndex,
    int toIndex)