| java.lang.Object net.sf.jga.util.EmptyIterator
add | public void add(T arg)(Code) | | throws UnsupportedOperationException
|
hasNext | public boolean hasNext()(Code) | | Returns false: the set of elements is empty by definition
false |
hasPrevious | public boolean hasPrevious()(Code) | | Returns false: the set of elements is empty by definition
false |
next | public T next()(Code) | | throws NoSuchElement exception
nothing |
nextIndex | public int nextIndex()(Code) | | returns the size of the list (0, in this case)
0 |
previous | public T previous()(Code) | | throws NoSuchElement exception
nothing |
previousIndex | public int previousIndex()(Code) | | returns -1, as there is no previous
-1; |
remove | public void remove()(Code) | | throws UnsupportedOperationException
|
set | public void set(T arg)(Code) | | throws UnsupportedOperationException
|
|
|