public interface BidiIterator<T> extends Iterator<T>
A bidirectional iterator. It can be used in both directions and even alternating.
It is similar to a ListIterator besides that it does not
support the index-based operations previousIndex and
nextIndex or the mutating operations
set and
add.
boolean hasPrevious()
T previous()
NoSuchElementException - if the iteration has no previous
element.Copyright © 2015. All Rights Reserved.