javanet.staxutils
Class XMLStreamEventReader
java.lang.Object
javanet.staxutils.XMLStreamEventReader
- All Implemented Interfaces:
- java.util.Iterator, XMLEventReader
- public class XMLStreamEventReader
- extends java.lang.Object
- implements XMLEventReader
XMLEventReader
implementation based on a XMLStreamReader
and
an XMLEventAllocator
.
- Version:
- $Revision: 1.3 $
- Author:
- Christian Niles
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
XMLStreamEventReader
public XMLStreamEventReader(XMLStreamReader reader)
XMLStreamEventReader
public XMLStreamEventReader(XMLStreamReader reader,
XMLEventAllocator allocator)
getProperty
public java.lang.Object getProperty(java.lang.String name)
throws java.lang.IllegalArgumentException
- No properties are supported, so this always throws
IllegalArgumentException
.
- Specified by:
getProperty
in interface XMLEventReader
- Throws:
java.lang.IllegalArgumentException
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interface XMLEventReader
nextTag
public XMLEvent nextTag()
throws XMLStreamException
- Specified by:
nextTag
in interface XMLEventReader
- Throws:
XMLStreamException
getElementText
public java.lang.String getElementText()
throws XMLStreamException
- Specified by:
getElementText
in interface XMLEventReader
- Throws:
XMLStreamException
nextEvent
public XMLEvent nextEvent()
throws XMLStreamException
- Specified by:
nextEvent
in interface XMLEventReader
- Throws:
XMLStreamException
peek
public XMLEvent peek()
throws XMLStreamException
- Specified by:
peek
in interface XMLEventReader
- Throws:
XMLStreamException
next
public java.lang.Object next()
- Specified by:
next
in interface java.util.Iterator
remove
public void remove()
- Specified by:
remove
in interface java.util.Iterator
close
public void close()
throws XMLStreamException
- Specified by:
close
in interface XMLEventReader
- Throws:
XMLStreamException
allocateEvent
protected XMLEvent allocateEvent()
throws XMLStreamException
- Reads the next event from the underlying reader.
- Returns:
- The allocated
XMLEvent
.
- Throws:
XMLStreamException
- If an error occurs reading the underlying stream.