Package java.util
Interface ListIterator

Public Method next

abstract Object next()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the next element in the list. This method may be called repeatedly to iterate through the list, of intermixed with calls to previous to go back and forth. The alternating call to next and previous will return the same element repeatedly.