Uses of Class
org.yaml.snakeyaml.events.Event
-
Packages that use Event Package Description org.yaml.snakeyaml org.yaml.snakeyaml.emitter org.yaml.snakeyaml.events org.yaml.snakeyaml.parser -
-
Uses of Event in org.yaml.snakeyaml
Methods in org.yaml.snakeyaml that return types with arguments of type Event Modifier and Type Method Description java.lang.Iterable<Event>
Yaml. parse(java.io.Reader yaml)
Parse a YAML stream and produce parsing events.java.util.List<Event>
Yaml. serialize(Node data)
Serialize the representation tree into Events. -
Uses of Event in org.yaml.snakeyaml.emitter
Methods in org.yaml.snakeyaml.emitter with parameters of type Event Modifier and Type Method Description void
Emitable. emit(Event event)
void
Emitter. emit(Event event)
-
Uses of Event in org.yaml.snakeyaml.events
Subclasses of Event in org.yaml.snakeyaml.events Modifier and Type Class Description class
AliasEvent
Marks the inclusion of a previously anchored node.class
CollectionEndEvent
Base class for the end events of the collection nodes.class
CollectionStartEvent
Base class for the start events of the collection nodes.class
DocumentEndEvent
Marks the end of a document.class
DocumentStartEvent
Marks the beginning of a document.class
MappingEndEvent
Marks the end of a mapping node.class
MappingStartEvent
Marks the beginning of a mapping node.class
NodeEvent
Base class for all events that mark the beginning of a node.class
ScalarEvent
Marks a scalar value.class
SequenceEndEvent
Marks the end of a sequence.class
SequenceStartEvent
Marks the beginning of a sequence node.class
StreamEndEvent
Marks the end of a stream that might have contained multiple documents.class
StreamStartEvent
Marks the start of a stream that might contain multiple documents. -
Uses of Event in org.yaml.snakeyaml.parser
Methods in org.yaml.snakeyaml.parser that return Event Modifier and Type Method Description Event
Parser. getEvent()
Returns the next event.Event
ParserImpl. getEvent()
Get the next event and proceed further.Event
Parser. peekEvent()
Return the next event, but do not delete it from the stream.Event
ParserImpl. peekEvent()
Get the next event.
-