Package de.intarsys.tools.collection
Class ReverseListIterator<T>
- java.lang.Object
-
- de.intarsys.tools.collection.ReverseListIterator<T>
-
- All Implemented Interfaces:
java.lang.Iterable<T>,java.util.Iterator<T>
public class ReverseListIterator<T> extends java.lang.Object implements java.util.Iterator<T>, java.lang.Iterable<T>This iterator enumerates the elements of a list in reverse order.
-
-
Constructor Summary
Constructors Constructor Description ReverseListIterator(java.util.List<T> list)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()java.util.Iterator<T>iterator()Tnext()voidremove()
-
-
-
Constructor Detail
-
ReverseListIterator
public ReverseListIterator(java.util.List<T> list)
-
-