Class IteratorCollection<T>
java.lang.Object
java.util.AbstractCollection<T>
org.codehaus.commons.compiler.util.iterator.IteratorCollection<T>
- Type Parameters:
T- The element type of the iterator and the collection
- All Implemented Interfaces:
Iterable<T>, Collection<T>
A
Collection that lazily reads its elements from an Iterator.
In other words, you can call iterator() as often as you want, but the IteratorCollection will
iterate over its delegate only once.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class AbstractCollection
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
Field Details
-
iterator
-
elements
-
-
Constructor Details
-
IteratorCollection
-
-
Method Details
-
iterator
-
size
public int size()- Specified by:
sizein interfaceCollection<T>- Specified by:
sizein classAbstractCollection<T>
-