Iz E-študij, proste zakladnice študentskega znanja
public abstract class AbstractList extends AbstractCollection implements List
{ (protected) AbstractList()
boolean add(Object); //opcijsko
add (int, Object); // opcijsko
boolean addAll(Collection);
boolean addAll(int, Collection);
clear();
//boolean contains(Object);
//boolean containsAll(Collection);
boolean equals(Object);
(abstract) Object get(int);
int hashCode();
int indexOf(Object);
//boolean isEmpty();
Iterator iterator();
int lastIndexOf(Object);
ListIterator listIterator();
ListIterator listIterator(int);
//boolean remove(Object);
Object remove(int); // opcijsko
removeRange(int, int);
//boolean removeAll(Collection);
//boolean retainAll(Collection);
Object set(int, Object); // opcijsko
//int size();
List subList(int, int);
//Object[] toArray();
//Object[] toArray(Object[]);
}