PPT Slide
Method Summary for AbstractList - Continued
ListIterator listIterator(int index) Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in the list.
Object remove(int index) Removes the element at the specified position in this list (optional operation).
protected void removeRange(int fromIndex, int toIndex) Removes from this list all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive.
Object set(int index, Object element) Replaces the element at the specified position in this list with the specified element (optional operation).
List subList(int fromIndex, int toIndex) Returns a view of the portion of this list between fromIndex, inclusive, and toIndex, exclusive.