| |
|
| java.lang.Object net.sourceforge.squirrel_sql.fw.util.EmptyIterator
EmptyIterator | public class EmptyIterator implements Iterator<E>(Code) | | This represents an iterator that is over an empty container.
author: Colin Bell |
Method Summary | |
public boolean | hasNext() Returns false as container is empty. | public E | next() Throws NoSuchElementException as container is empty. | public void | remove() Throws IllegalStateException as container is empty. |
hasNext | public boolean hasNext()(Code) | | Returns false as container is empty.
|
next | public E next()(Code) | | Throws NoSuchElementException as container is empty.
|
remove | public void remove()(Code) | | Throws IllegalStateException as container is empty.
|
|
|
|