Package net.sf.okapi.common
Class XMLEventsReader
- java.lang.Object
-
- net.sf.okapi.common.XMLEventsReader
-
- All Implemented Interfaces:
Iterator<Object>,XMLEventReader
public final class XMLEventsReader extends Object implements XMLEventReader
Provides an XML events reader.
-
-
Constructor Summary
Constructors Constructor Description XMLEventsReader(Iterable<XMLEvent> events)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()StringgetElementText()ObjectgetProperty(String name)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
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<Object>- Specified by:
hasNextin interfaceXMLEventReader
-
nextEvent
public XMLEvent nextEvent()
- Specified by:
nextEventin interfaceXMLEventReader
-
nextTag
public XMLEvent nextTag() throws XMLStreamException
- Specified by:
nextTagin interfaceXMLEventReader- Throws:
XMLStreamException
-
peek
public XMLEvent peek() throws XMLStreamException
- Specified by:
peekin interfaceXMLEventReader- Throws:
XMLStreamException
-
getElementText
public String getElementText() throws XMLStreamException
- Specified by:
getElementTextin interfaceXMLEventReader- Throws:
XMLStreamException
-
getProperty
public Object getProperty(String name) throws IllegalArgumentException
- Specified by:
getPropertyin interfaceXMLEventReader- Throws:
IllegalArgumentException
-
close
public void close() throws XMLStreamException- Specified by:
closein interfaceXMLEventReader- Throws:
XMLStreamException
-
-