Uses of Class
org.snakeyaml.engine.v2.events.Event
Packages that use Event
Package
Description
-
Uses of Event in org.snakeyaml.engine.v2.api.lowlevel
Fields in org.snakeyaml.engine.v2.api.lowlevel with type parameters of type EventMethods in org.snakeyaml.engine.v2.api.lowlevel that return types with arguments of type EventModifier and TypeMethodDescriptionEmitableEvents.getEvents()
Parse.parseInputStream
(InputStream yaml) Parse a YAML stream and produce parsing events.Parse.parseReader
(Reader yaml) Parse a YAML stream and produce parsing events.Parse.parseString
(String yaml) Parse a YAML stream and produce parsing events.Serialize.serializeAll
(List<Node> nodes) SerializeNode
s and produce events.Serialize.serializeOne
(Node node) Serialize aNode
and produce events.Methods in org.snakeyaml.engine.v2.api.lowlevel with parameters of type EventMethod parameters in org.snakeyaml.engine.v2.api.lowlevel with type arguments of type EventModifier and TypeMethodDescriptionPresent.emitToString
(Iterator<Event> events) Serialise the provided Events -
Uses of Event in org.snakeyaml.engine.v2.comments
Fields in org.snakeyaml.engine.v2.comments with type parameters of type EventMethods in org.snakeyaml.engine.v2.comments that return EventModifier and TypeMethodDescriptionCommentEventsCollector.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.CommentEventsCollector.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.snakeyaml.engine.v2.comments with parameters of type EventModifier and TypeMethodDescriptionCommentEventsCollector.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.CommentEventsCollector.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.private boolean
CommentEventsCollector.isEventExpected
(Event event) Determine if the event is a comment of one of the expected types set during construction.Constructor parameters in org.snakeyaml.engine.v2.comments with type arguments of type EventModifierConstructorDescriptionCommentEventsCollector
(Queue<Event> eventSource, CommentType... expectedCommentTypes) Constructor used to collect events emitted by the Serializer. -
Uses of Event in org.snakeyaml.engine.v2.emitter
Fields in org.snakeyaml.engine.v2.emitter declared as EventFields in org.snakeyaml.engine.v2.emitter with type parameters of type EventMethods in org.snakeyaml.engine.v2.emitter with parameters of type EventModifier and TypeMethodDescriptionvoid
Serialise event to bytesvoid
private boolean
Emitter.isFoldedOrLiteral
(Event event) Method parameters in org.snakeyaml.engine.v2.emitter with type arguments of type EventModifier and TypeMethodDescriptionprivate boolean
Emitter.needEvents
(Iterator<Event> iter, int count) -
Uses of Event in org.snakeyaml.engine.v2.events
Subclasses of Event in org.snakeyaml.engine.v2.eventsModifier and TypeClassDescriptionfinal class
Marks the inclusion of a previously anchored node.class
Base class for the end events of the collection nodes.class
Base class for the start events of the collection nodes.final class
Marks a comment block value.final class
Marks the end of a document.final class
Marks the beginning of a document.final class
Marks the end of a mapping node.final class
Marks the beginning of a mapping node.class
Base class for all events that mark the beginning of a node.final class
Marks a scalar value.final class
Marks the end of a sequence.final class
Marks the beginning of a sequence node.final class
Marks the end of a stream that might have contained multiple documents.final class
Marks the start of a stream that might contain multiple documents. -
Uses of Event in org.snakeyaml.engine.v2.parser
Fields in org.snakeyaml.engine.v2.parser with type parameters of type EventMethods in org.snakeyaml.engine.v2.parser that return EventModifier and TypeMethodDescriptionParser.next()
Returns the next event.ParserImpl.next()
Consume the event (get the next event and removed it).private Event
ParserImpl.parseBlockNodeOrIndentlessSequence()
private Event
ParserImpl.parseFlowNode()
private Event
ParserImpl.parseNode
(boolean block, boolean indentlessSequence) Parser.peekEvent()
Return the next event, but do not delete it from the stream.ParserImpl.peekEvent()
Get the next event (and keep it).private Event
ParserImpl.processEmptyScalar
(Optional<Mark> mark) block_mapping ::= BLOCK-MAPPING_START ((KEY block_node_or_indentless_sequence?)? (VALUE block_node_or_indentless_sequence?)?)* BLOCK-ENDParserImpl.ParseBlockMappingFirstKey.produce()
ParserImpl.ParseBlockMappingKey.produce()
ParserImpl.ParseBlockMappingValue.produce()
ParserImpl.ParseBlockMappingValueComment.produce()
ParserImpl.ParseBlockMappingValueCommentList.produce()
ParserImpl.ParseBlockNode.produce()
ParserImpl.ParseBlockSequenceEntryKey.produce()
ParserImpl.ParseBlockSequenceEntryValue.produce()
ParserImpl.ParseBlockSequenceFirstEntry.produce()
ParserImpl.ParseDocumentContent.produce()
ParserImpl.ParseDocumentEnd.produce()
ParserImpl.ParseDocumentStart.produce()
ParserImpl.ParseFlowEndComment.produce()
ParserImpl.ParseFlowMappingEmptyValue.produce()
ParserImpl.ParseFlowMappingFirstKey.produce()
ParserImpl.ParseFlowMappingKey.produce()
ParserImpl.ParseFlowMappingValue.produce()
ParserImpl.ParseFlowSequenceEntry.produce()
ParserImpl.ParseFlowSequenceEntryMappingEnd.produce()
ParserImpl.ParseFlowSequenceEntryMappingKey.produce()
ParserImpl.ParseFlowSequenceEntryMappingValue.produce()
ParserImpl.ParseFlowSequenceFirstEntry.produce()
ParserImpl.ParseImplicitDocumentStart.produce()
ParserImpl.ParseIndentlessSequenceEntryKey.produce()
ParserImpl.ParseIndentlessSequenceEntryValue.produce()
ParserImpl.ParseStreamStart.produce()
Production.produce()
Produce parsed event