public class EventReaderDelegate extends Object implements XMLEventReader
This is the base class for deriving an XMLEventReader filter. This class is designed to sit between an XMLEventReader and an application's XMLEventReader. By default each method does nothing but call the corresponding method on the parent interface.
XMLEventReader
, StreamReaderDelegate
public EventReaderDelegate()
Construct an empty filter with no parent.
public EventReaderDelegate(XMLEventReader reader)
Construct an filter with the specified parent.
reader
- the parentpublic void setParent(XMLEventReader reader)
Set the parent of this instance.
reader
- the new parentpublic XMLEventReader getParent()
Get the parent of this instance.
public XMLEvent nextEvent() throws XMLStreamException
Description copied from interface: XMLEventReader
Get the next XMLEvent
nextEvent
in interface XMLEventReader
XMLStreamException
- if there is an error with the underlying XML.XMLEvent
public Object next()
Description copied from interface: Iterator
Returns the next element in the iteration.
public boolean hasNext()
Description copied from interface: XMLEventReader
Check if there are more events. Returns true if there are more events and false otherwise.
hasNext
in interface Iterator
hasNext
in interface XMLEventReader
public XMLEvent peek() throws XMLStreamException
Description copied from interface: XMLEventReader
Check the next XMLEvent without reading it from the stream. Returns null if the stream is at EOF or has no more XMLEvents. A call to peek() will be equal to the next return of next().
peek
in interface XMLEventReader
XMLStreamException
XMLEvent
public void close() throws XMLStreamException
Description copied from interface: XMLEventReader
Frees any resources associated with this Reader. This method does not close the underlying input source.
close
in interface XMLEventReader
XMLStreamException
- if there are errors freeing associated resourcespublic String getElementText() throws XMLStreamException
Description copied from interface: XMLEventReader
Reads the content of a text-only element. Precondition: the current event is START_ELEMENT. Postcondition: The current event is the corresponding END_ELEMENT.
getElementText
in interface XMLEventReader
XMLStreamException
- if the current event is not a START_ELEMENT or if a non text element is encounteredpublic XMLEvent nextTag() throws XMLStreamException
Description copied from interface: XMLEventReader
Skips any insignificant space events until a START_ELEMENT or END_ELEMENT is reached. If anything other than space characters are encountered, an exception is thrown. This method should be used when processing element-only content because the parser is not able to recognize ignorable whitespace if the DTD is missing or not interpreted.
nextTag
in interface XMLEventReader
XMLStreamException
- if anything other than space characters are encounteredpublic Object getProperty(String name) throws IllegalArgumentException
Description copied from interface: XMLEventReader
Get the value of a feature/property from the underlying implementation
getProperty
in interface XMLEventReader
name
- The name of the propertyIllegalArgumentException
- if the property is not supportedpublic void remove()
Description copied from interface: Iterator
Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to Iterator.next()
. The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.