Method Summary |
|
public void | add(int location, E object) Inserts the specified object into this List at the specified location.
The object is inserted before any previous element at the specified
location. |
public boolean | addAll(int location, Collection<? extends E> collection) Inserts the objects in the specified Collection at the specified location
in this List. |
public E | get(int location) Answers the element at the specified location in this List. |
public Iterator<E> | iterator() Answers an Iterator on the elements of this List. |
abstract public ListIterator<E> | listIterator(int location) Answers a ListIterator on the elements of this List. |
public E | remove(int location) Removes the object at the specified location from this List. |
public E | set(int location, E object) Replaces the element at the specified location in this List with the
specified object. |