Example usage for Java javax.xml.stream XMLEventReader fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Frees any resources associated with this Reader. |
String | getElementText() Reads the content of a text-only element. |
boolean | hasNext() Check if there are more events. |
E | next() Returns the next element in the iteration. |
XMLEvent | nextEvent() Gets the next XMLEvent. |
XMLEvent | nextTag() Skips any insignificant space events until a START_ELEMENT or END_ELEMENT is reached. |
XMLEvent | peek() Check the next XMLEvent without reading it from the stream. |
void | remove() Removes from the underlying collection the last element returned by this iterator (optional operation). |