Home | History | Annotate | Download | only in parser

Lines Matching refs:Event

18 import org.yaml.snakeyaml.events.Event;
21 * This interface represents an input stream of {@link Event Events}.
28 * @see org.yaml.snakeyaml.events.Event
33 * Check if the next event is one of the given type.
36 * Event ID.
37 * @return <code>true</code> if the next event can be assigned to a variable
43 public boolean checkEvent(Event.ID choice);
46 * Return the next event, but do not delete it from the stream.
48 * @return The event that will be returned on the next call to
53 public Event peekEvent();
56 * Returns the next event.
58 * The event will be removed from the stream.
64 public Event getEvent();