gnu.javax.net.ssl.provider
Class ExtensionList.ExtensionsIterator
- ExtensionList
- Iterator<E>, ListIterator<E>
List iterator interface to an extensions list.
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
ExtensionsIterator
public ExtensionsIterator()
The basic constructor. Object is special, because it has no
superclass, so there is no call to super().
hasNext
public boolean hasNext()
Tests whether there are elements remaining in the collection. In other
words, calling next()
will not throw an exception.
- hasNext in interface ListIterator<E>
- hasNext in interface Iterator<E>
- true if there is at least one more element in the collection
remove
public void remove()
Remove from the underlying collection the last element returned by next
(optional operation). This method can be called only once after each
call to next()
. It does not affect what will be returned
by subsequent calls to next.
- remove in interface ListIterator<E>
- remove in interface Iterator<E>