|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.runtime.ReverseListIterator
public class ReverseListIterator extends java.lang.Object
A reverse iterator over a list. Utilizes the java.util.ListIterator
obtained from the provided java.util.List and converts it to an
java.util.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 Summary | |
ReverseListIterator(java.util.List list)
Constructs a new |
Method Summary | |
---|---|
boolean
|
hasNext()
{@inheritDoc} |
java.lang.Object
|
next()
{@inheritDoc} |
void
|
remove()
{@inheritDoc} |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Constructor Detail |
---|
public ReverseListIterator(java.util.List list)
ReverseListIterator
for the provided list.
list
- the list to iterate over in reverse
Method Detail |
---|
public boolean hasNext()
public java.lang.Object next()
public void remove()
Groovy Documentation