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 TypeMethodDescriptionbooleanhasNext()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 abortjavax.xml.bind.JAXBException- if an error is found, reported, and we were told to abort
-