|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ClosableIterator<E>
An closabel iterator over a collection. Iterator takes the place of Enumeration in the Java collections framework.
Collection,
ListIterator,
Enumeration| Method Summary | |
|---|---|
void |
close()
The uderlying implementation frees resources. |
boolean |
hasNext()
Returns true if the iteration has more elements. |
E |
next()
Returns the next element in the iteration. |
void |
remove()
Removes from the underlying collection the last element returned by the iterator (optional operation). |
| Method Detail |
|---|
boolean hasNext()
hasNext in interface java.util.Iterator<E>E next()
hasNext() method returns false will
return each element in the underlying collection exactly once.
next in interface java.util.Iterator<E>NoSuchElementException - iteration has no more elements.void remove()
remove in interface java.util.Iterator<E>java.lang.UnsupportedOperationException - if the remove
operation is not supported by this Iterator.
java.lang.IllegalStateException - if the next method has not
yet been called, or the remove method has already
been called after the last call to the next
method.void close()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||