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

All Implemented Interfaces:
    List, Collection, Serializable

Direct Known Subclasses:
    CheckedRandomAccessList

Field Summary
final  List<E> list     
Fields inherited from java.util.Collections$CheckedCollection:
c,  type
Constructor:
 CheckedList(List<E> list,
    Class<E> type) 
Method from java.util.Collections$CheckedList Summary:
add,   addAll,   equals,   get,   hashCode,   indexOf,   lastIndexOf,   listIterator,   listIterator,   remove,   set,   subList
Methods from java.util.Collections$CheckedCollection:
add,   addAll,   checkedCopyOf,   clear,   contains,   containsAll,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString,   typeCheck
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.Collections$CheckedList 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)