Returns an iterator on the elements of this list. The elements are iterated in the same order as they occur in the list. @return an iterator on the elements of this list. @see Iterator
()
| 564 | * @see Iterator |
| 565 | */ |
| 566 | @Override |
| 567 | public Iterator<E> iterator() { |
| 568 | return new SimpleListIterator(); |
| 569 | } |
| 570 | |
| 571 | /** |
| 572 | * Searches this list for the specified object and returns the index of the |