PPT Slide
Method Summary for AbstractList
void add(int index, Object element) Inserts the specified element at the specified position in this list (optional operation).
boolean add(Object o) Appends the specified element to the end of this List (optional operation).
boolean addAll(int index, Collection c) Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
void clear() Removes all of the elements from this collection (optional operation).
boolean equals(Object o) Compares the specified object with this list for equality.
abstract Object get(int index) Returns the element at the specified position in this list.