public interface Parser extends Iterator<Event>
Events.
The parser and the scanner form together the 'Parse' step in the loading process.
| Modifier and Type | Method and Description |
|---|---|
boolean |
checkEvent(Event.ID choice)
Check if the next event is one of the given type.
|
Event |
next()
Returns the next event.
|
Event |
peekEvent()
Return the next event, but do not delete it from the stream.
|
forEachRemaining, hasNext, removeboolean checkEvent(Event.ID choice)
choice - Event ID to matchtrue if the next event has the given ID.
Returns false if no more events are available.ParserException - Thrown in case of malformed input.Event peekEvent()
next()ParserException - Thrown in case of malformed input
or NoSuchElementException in case no event is available.Event next()
The event will be removed from the stream.
next in interface Iterator<Event>ParserException - Thrown in case of malformed input.Copyright © 2018–2022. All rights reserved.