Package org.jdom.util
Interface IteratorIterable<T>
-
- Type Parameters:
T
- The generic type of the values returned by this interface
public interface IteratorIterable<T> extends Iterable<T>, Iterator<T>
An interface that represents both ajava.util.Iterator
and ajava.lang.Iterable
.JDOM 1.x has a number of methods that return an Iterator. These methods would (in some conditions) be better represented as an Iterable. To maintain compatibility, and to extend the functionality of these methods in JDOM2, they have been altered to return an instance of this interface.
-
-
Method Summary
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-