Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » [javadoc | source]
org.apache.commons.collections
class: CursorableSubList [javadoc | source]
java.lang.Object
   org.apache.commons.collections.CursorableLinkedList
      org.apache.commons.collections.CursorableSubList

All Implemented Interfaces:
    List, Serializable

Deprecated! Use - new version in list subpackage, which has been rewritten and now returns the cursor from the listIterator method. Will be removed in v4.0

Field Summary
protected  CursorableLinkedList _list    My underlying list 
protected  Listable _pre    The element in my underlying list preceding the first element in my list. 
protected  Listable _post    The element in my underlying list following the last element in my list. 
Fields inherited from org.apache.commons.collections.CursorableLinkedList:
_size,  _head,  _modCount,  _cursors
Constructor:
 CursorableSubList(CursorableLinkedList list,
    int from,
    int to) 
Method from org.apache.commons.collections.CursorableSubList Summary:
add,   add,   addAll,   addAll,   addFirst,   addLast,   checkForComod,   clear,   contains,   containsAll,   equals,   get,   getFirst,   getLast,   hashCode,   indexOf,   insertListable,   isEmpty,   iterator,   lastIndexOf,   listIterator,   listIterator,   remove,   remove,   removeAll,   removeFirst,   removeLast,   removeListable,   retainAll,   set,   size,   subList,   toArray,   toArray
Methods from org.apache.commons.collections.CursorableLinkedList:
add,   add,   addAll,   addAll,   addFirst,   addLast,   broadcastListableChanged,   broadcastListableInserted,   broadcastListableRemoved,   clear,   contains,   containsAll,   cursor,   cursor,   equals,   get,   getFirst,   getLast,   getListableAt,   hashCode,   indexOf,   insertListable,   invalidateCursors,   isEmpty,   iterator,   lastIndexOf,   listIterator,   listIterator,   registerCursor,   remove,   remove,   removeAll,   removeFirst,   removeLast,   removeListable,   retainAll,   set,   size,   subList,   toArray,   toArray,   toString,   unregisterCursor
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.CursorableSubList Detail:
 public boolean add(Object o) 
      Deprecated!
 public  void add(int index,
    Object element) 
      Deprecated!
 public boolean addAll(Collection c) 
      Deprecated!
 public boolean addAll(int index,
    Collection c) 
      Deprecated!
 public boolean addFirst(Object o) 
      Deprecated!
 public boolean addLast(Object o) 
      Deprecated!
 protected  void checkForComod() throws ConcurrentModificationException 
      Deprecated!
    Test to see if my underlying list has been modified by some other process. If it has, throws a ConcurrentModificationException , otherwise quietly returns.
 public  void clear() 
      Deprecated!
 public boolean contains(Object o) 
      Deprecated!
 public boolean containsAll(Collection c) 
      Deprecated!
 public boolean equals(Object o) 
      Deprecated!
 public Object get(int index) 
      Deprecated!
 public Object getFirst() 
      Deprecated!
 public Object getLast() 
      Deprecated!
 public int hashCode() 
      Deprecated!
 public int indexOf(Object o) 
      Deprecated!
 protected Listable insertListable(Listable before,
    Listable after,
    Object value) 
      Deprecated!
    Inserts a new value into my list, after the specified before element, and before the specified after element
 public boolean isEmpty() 
      Deprecated!
 public Iterator iterator() 
      Deprecated!
 public int lastIndexOf(Object o) 
      Deprecated!
 public ListIterator listIterator() 
      Deprecated!
 public ListIterator listIterator(int index) 
      Deprecated!
 public boolean remove(Object o) 
      Deprecated!
 public Object remove(int index) 
      Deprecated!
 public boolean removeAll(Collection c) 
      Deprecated!
 public Object removeFirst() 
      Deprecated!
 public Object removeLast() 
      Deprecated!
 protected  void removeListable(Listable elt) 
      Deprecated!
 public boolean retainAll(Collection c) 
      Deprecated!
 public Object set(int index,
    Object element) 
      Deprecated!
 public int size() 
      Deprecated!
 public List subList(int fromIndex,
    int toIndex) 
      Deprecated!
 public Object[] toArray() 
      Deprecated!
 public Object[] toArray(Object[] a) 
      Deprecated!