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 voidEmitable. emit(Event event)voidEmitter. emit(Event event) -
Uses of Event in org.yaml.snakeyaml.events
Subclasses of Event in org.yaml.snakeyaml.events Modifier and Type Class Description classAliasEventMarks the inclusion of a previously anchored node.classCollectionEndEventBase class for the end events of the collection nodes.classCollectionStartEventBase class for the start events of the collection nodes.classDocumentEndEventMarks the end of a document.classDocumentStartEventMarks the beginning of a document.classMappingEndEventMarks the end of a mapping node.classMappingStartEventMarks the beginning of a mapping node.classNodeEventBase class for all events that mark the beginning of a node.classScalarEventMarks a scalar value.classSequenceEndEventMarks the end of a sequence.classSequenceStartEventMarks the beginning of a sequence node.classStreamEndEventMarks the end of a stream that might have contained multiple documents.classStreamStartEventMarks 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 EventParser. getEvent()Returns the next event.EventParserImpl. getEvent()Get the next event and proceed further.EventParser. peekEvent()Return the next event, but do not delete it from the stream.EventParserImpl. peekEvent()Get the next event.
-