Interface ListIterator<E>
- All Known Implementing Classes:
Lister.IDREFSIterator
public interface ListIterator<E>
Almost like
Iterator
but can throw JAXB specific exceptions.- Author:
- Kohsuke Kawaguchi
-
Method Summary
Modifier and TypeMethodDescriptionboolean
hasNext()
Works likeIterator.hasNext()
.next()
Works likeIterator.next()
.
-
Method Details
-
hasNext
boolean hasNext()Works likeIterator.hasNext()
. -
next
Works likeIterator.next()
.- Throws:
SAXException
- if an error is found, reported, and we were told to abortJAXBException
- if an error is found, reported, and we were told to abort
-