Package java.util
Interface ListIterator

Public Method previous

abstract Object previous()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

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