T - object of the type on which the user wants to iterate.public interface ICollectionIterator<T>
extends java.util.Iterator<T>, java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
The implementation of this method checks whether the collection contains more elements.
|
T |
next()
The implementation of this method retrieve the next element from the collection.
|
void |
remove()
The implementation of this method remove the element from the collection.
|
boolean hasNext()
hasNext in interface java.util.Iterator<T>T next()
next in interface java.util.Iterator<T>void remove()
remove in interface java.util.Iterator<T>