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

All Implemented Interfaces:
    Collection, Serializable

Direct Known Subclasses:
    CheckedRandomAccessList, CheckedList, CheckedSet, CheckedSortedSet

Field Summary
final  Collection<E> c     
final  Class<E> type     
Constructor:
 CheckedCollection(Collection<E> c,
    Class<E> type) 
Method from java.util.Collections$CheckedCollection Summary:
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$CheckedCollection Detail:
 public boolean add(E e) 
 public boolean addAll(Collection<? extends E> coll) 
 Collection<E> checkedCopyOf(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() 
  void typeCheck(Object o)