java.util.Iterator<T>public class ReverseListIterator<T>
extends java.lang.Object
implements java.util.Iterator<T>
ListIterator
obtained from the provided List and converts it to an
Iterator that efficiently traverses the List in
reverse. The fail-fast semantics of this iterator are the same as the
semantics of the underlying ListIterator.| Constructor | Description |
|---|---|
ReverseListIterator(java.util.List<T> list) |
Constructs a new
ReverseListIterator for the provided list. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
hasNext() |
|
T |
next() |
|
void |
remove() |
public ReverseListIterator(java.util.List<T> list)
ReverseListIterator for the provided list.list - the list to iterate over in reverse