Interface ListIterable<T>
-
- All Superinterfaces:
Iterable<T>
- All Known Implementing Classes:
CloneListIterable
,SingleElementListIterable
,SnapshotCloneListIterable
public interface ListIterable<T> extends Iterable<T>
AListIterable
simply forces the returned object to be an instance ofListIterator
.- Since:
- 2.5
- Version:
- 2.5
- Author:
- Pascal Filion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIterator<T>
iterator()
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
iterator
ListIterator<T> iterator()
-
-