Module com.sun.xml.bind
Interface ListIterator<E>
-
- All Known Implementing Classes:
Lister.IDREFSIterator
public interface ListIterator<E>Almost likeIteratorbut can throw JAXB specific exceptions.- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Works likeIterator.hasNext().Enext()Works likeIterator.next().
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Works likeIterator.hasNext().
-
next
E next() throws SAXException, jakarta.xml.bind.JAXBException
Works likeIterator.next().- Throws:
SAXException- if an error is found, reported, and we were told to abortjakarta.xml.bind.JAXBException- if an error is found, reported, and we were told to abort
-
-