Interface ListIterator<E>
-
- All Known Implementing Classes:
Lister.IDREFSIterator
public interface ListIterator<E>
Almost likeIterator
but can throw JAXB specific exceptions.- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Works likeIterator.hasNext()
.E
next()
Works likeIterator.next()
.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Works likeIterator.hasNext()
.
-
next
E next() throws SAXException, JAXBException
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
-
-