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) SerializeNodes and produce events.Serialize.serializeOne(Node node) Serialize aNodeand 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 booleanCommentEventsCollector.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 TypeMethodDescriptionvoidSerialise event to bytesvoidprivate booleanEmitter.isFoldedOrLiteral(Event event) Method parameters in org.snakeyaml.engine.v2.emitter with type arguments of type EventModifier and TypeMethodDescriptionprivate booleanEmitter.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 classMarks the inclusion of a previously anchored node.classBase class for the end events of the collection nodes.classBase class for the start events of the collection nodes.final classMarks a comment block value.final classMarks the end of a document.final classMarks the beginning of a document.final classMarks the end of a mapping node.final classMarks the beginning of a mapping node.classBase class for all events that mark the beginning of a node.final classMarks a scalar value.final classMarks the end of a sequence.final classMarks the beginning of a sequence node.final classMarks the end of a stream that might have contained multiple documents.final classMarks the start of a stream that might contain multiple documents. -
Uses of Event in org.snakeyaml.engine.v2.parser
Subinterfaces with type arguments of type Event in org.snakeyaml.engine.v2.parserModifier and TypeInterfaceDescriptioninterfaceThis interface represents an input stream ofEvents.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 EventParserImpl.parseBlockNodeOrIndentlessSequence()private EventParserImpl.parseFlowNode()private EventParserImpl.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 EventParserImpl.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