Class ForwardingXmlEventReader
- java.lang.Object
-
- com.atlassian.confluence.content.render.xhtml.ForwardingXmlEventReader
-
- All Implemented Interfaces:
Iterator<Object>,XMLEventReader
- Direct Known Subclasses:
ElementTransformingXmlEventReader,ResettableXmlEventReader,TextExtractingXmlFragmentEventReader,XmlFragmentEventReader
public class ForwardingXmlEventReader extends Object implements XMLEventReader
Class delegates all calls to an {code}XMLEventReader{code} passed to the constructor.
-
-
Field Summary
Fields Modifier and Type Field Description protected XMLEventReaderdelegate
-
Constructor Summary
Constructors Constructor Description ForwardingXmlEventReader(XMLEventReader delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()StringgetElementText()ObjectgetProperty(String s)booleanhasNext()Objectnext()XMLEventnextEvent()XMLEventnextTag()XMLEventpeek()voidremove()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Field Detail
-
delegate
protected XMLEventReader delegate
-
-
Constructor Detail
-
ForwardingXmlEventReader
public ForwardingXmlEventReader(XMLEventReader delegate)
-
-
Method Detail
-
nextEvent
public XMLEvent nextEvent() throws XMLStreamException
- Specified by:
nextEventin interfaceXMLEventReader- Throws:
XMLStreamException
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<Object>- Specified by:
hasNextin interfaceXMLEventReader
-
peek
public XMLEvent peek() throws XMLStreamException
- Specified by:
peekin interfaceXMLEventReader- Throws:
XMLStreamException
-
getElementText
public String getElementText() throws XMLStreamException
- Specified by:
getElementTextin interfaceXMLEventReader- Throws:
XMLStreamException
-
nextTag
public XMLEvent nextTag() throws XMLStreamException
- Specified by:
nextTagin interfaceXMLEventReader- Throws:
XMLStreamException
-
getProperty
public Object getProperty(String s) throws IllegalArgumentException
- Specified by:
getPropertyin interfaceXMLEventReader- Throws:
IllegalArgumentException
-
close
public void close() throws XMLStreamException- Specified by:
closein interfaceXMLEventReader- Throws:
XMLStreamException
-
-