Uses of Class
org.yaml.snakeyaml.events.Event
-
Packages that use Event Package Description org.yaml.snakeyaml org.yaml.snakeyaml.comments 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 Iterable<Event>Yaml. parse(Reader yaml)Parse a YAML stream and produce parsing events.List<Event>Yaml. serialize(Node data)Serialize the representation tree into Events. -
Uses of Event in org.yaml.snakeyaml.comments
Methods in org.yaml.snakeyaml.comments that return Event Modifier and Type Method Description EventCommentEventsCollector. collectEvents(Event event)Collect all events of the expected type (set during construction) starting with event provided as an argument and continuing with the top event on the event source.EventCommentEventsCollector. collectEventsAndPoll(Event event)Collect all events of the expected type (set during construction) starting with event provided as an argument and continuing with the top event on the event source.Methods in org.yaml.snakeyaml.comments with parameters of type Event Modifier and Type Method Description EventCommentEventsCollector. collectEvents(Event event)Collect all events of the expected type (set during construction) starting with event provided as an argument and continuing with the top event on the event source.EventCommentEventsCollector. collectEventsAndPoll(Event event)Collect all events of the expected type (set during construction) starting with event provided as an argument and continuing with the top event on the event source.Constructor parameters in org.yaml.snakeyaml.comments with type arguments of type Event Constructor Description CommentEventsCollector(Queue<Event> eventSource, CommentType... expectedCommentTypes)Constructor used to collect events emitted by the Serializer. -
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)Serialise event to bytesvoidEmitter. 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.classCommentEventMarks a comment block value.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()Peek the next event (keeping it in the stream)
-