You need to use a ListIterator you use that to traverse the List in either direction. The iterator contains methods such as previous() and next(). Check it out in the Javadocs.
To get the ListIterator for your current list, call its listIterator(int index) method.