|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.runtime.ReverseListIterator
public class ReverseListIterator extends Object
A reverse iterator over a list. Utilizes the 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 Summary | |
ReverseListIterator(List list)
Constructs a new |
Method Summary | |
---|---|
boolean
|
hasNext()
{@inheritDoc} |
Object
|
next()
{@inheritDoc} |
void
|
remove()
{@inheritDoc} |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public ReverseListIterator(List list)
ReverseListIterator
for the provided list.
list
- the list to iterate over in reverse
Method Detail |
---|
public boolean hasNext()
public Object next()
public void remove()
Copyright © 2003-2013 The Codehaus. All rights reserved.