List (vmesnik)
Iz E-študij, proste zakladnice študentskega znanja
public interface List extends Collection { boolean add(Object); add (int, Object); boolean addAll(Collection); boolean addAll(int, Collection); clear(); boolean contains(Object); boolean containsAll(Collection); boolean equals(Object); 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); boolean removeAll(Collection); boolean retainAll(Collection); Object set(int, Object); int size(); List subList(int, int); Object[] toArray(); Object[] toArray(Object[]); }