Returns the next object in the iteration, i.e. returns the element in front of the iterator and advances the iterator by one position. @return the next object. @throws NoSuchElementException if there are no more elements. @see #hasNext
()
| 50 | * @see #hasNext |
| 51 | */ |
| 52 | public E next(); |
| 53 | |
| 54 | /** |
| 55 | * Removes the last object returned by {@code next} from the collection. |
no outgoing calls