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
Fields in org.yaml.snakeyaml with type parameters of type Event Modifier and Type Field Description private java.util.List<Event>Yaml.SilentEmitter. eventsprivate java.util.Iterator<Event>Yaml.EventIterable. iteratorMethods in org.yaml.snakeyaml that return types with arguments of type Event Modifier and Type Method Description java.util.List<Event>Yaml.SilentEmitter. getEvents()java.util.Iterator<Event>Yaml.EventIterable. iterator()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.Methods in org.yaml.snakeyaml with parameters of type Event Modifier and Type Method Description voidYaml.SilentEmitter. emit(Event event)Constructor parameters in org.yaml.snakeyaml with type arguments of type Event Constructor Description EventIterable(java.util.Iterator<Event> iterator) -
Uses of Event in org.yaml.snakeyaml.comments
Fields in org.yaml.snakeyaml.comments with type parameters of type Event Modifier and Type Field Description private java.util.Queue<Event>CommentEventsCollector. eventSourceMethods 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.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.yaml.snakeyaml.comments with type arguments of type Event Constructor Description CommentEventsCollector(java.util.Queue<Event> eventSource, CommentType... expectedCommentTypes)Constructor used to collect events emitted by the Serializer. -
Uses of Event in org.yaml.snakeyaml.emitter
Fields in org.yaml.snakeyaml.emitter declared as Event Modifier and Type Field Description private EventEmitter. eventFields in org.yaml.snakeyaml.emitter with type parameters of type Event Modifier and Type Field Description private java.util.Queue<Event>Emitter. eventsMethods in org.yaml.snakeyaml.emitter with parameters of type Event Modifier and Type Method Description voidEmitable. emit(Event event)Push event to bytesvoidEmitter. emit(Event event)private booleanEmitter. isFoldedOrLiteral(Event event)Method parameters in org.yaml.snakeyaml.emitter with type arguments of type Event Modifier and Type Method Description private booleanEmitter. needEvents(java.util.Iterator<Event> iter, int count) -
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
Fields in org.yaml.snakeyaml.parser declared as Event Modifier and Type Field Description private EventParserImpl. currentEventMethods 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.private EventParserImpl. parseBlockNodeOrIndentlessSequence()private EventParserImpl. parseFlowNode()private EventParserImpl. parseNode(boolean block, boolean indentlessSequence)EventParser. peekEvent()Return the next event, but do not delete it from the stream.EventParserImpl. peekEvent()Get the next event.private EventParserImpl. processEmptyScalar(Mark mark)block_mapping ::= BLOCK-MAPPING_START ((KEY block_node_or_indentless_sequence?)? (VALUE block_node_or_indentless_sequence?)?)* BLOCK-ENDEventParserImpl.ParseBlockMappingFirstKey. produce()EventParserImpl.ParseBlockMappingKey. produce()EventParserImpl.ParseBlockMappingValue. produce()EventParserImpl.ParseBlockMappingValueComment. produce()EventParserImpl.ParseBlockMappingValueCommentList. produce()EventParserImpl.ParseBlockNode. produce()EventParserImpl.ParseBlockSequenceEntryKey. produce()EventParserImpl.ParseBlockSequenceEntryValue. produce()EventParserImpl.ParseBlockSequenceFirstEntry. produce()EventParserImpl.ParseDocumentContent. produce()EventParserImpl.ParseDocumentEnd. produce()EventParserImpl.ParseDocumentStart. produce()EventParserImpl.ParseFlowEndComment. produce()EventParserImpl.ParseFlowMappingEmptyValue. produce()EventParserImpl.ParseFlowMappingFirstKey. produce()EventParserImpl.ParseFlowMappingKey. produce()EventParserImpl.ParseFlowMappingValue. produce()EventParserImpl.ParseFlowSequenceEntry. produce()EventParserImpl.ParseFlowSequenceEntryMappingEnd. produce()EventParserImpl.ParseFlowSequenceEntryMappingKey. produce()EventParserImpl.ParseFlowSequenceEntryMappingValue. produce()EventParserImpl.ParseFlowSequenceFirstEntry. produce()EventParserImpl.ParseImplicitDocumentStart. produce()EventParserImpl.ParseIndentlessSequenceEntryKey. produce()EventParserImpl.ParseIndentlessSequenceEntryValue. produce()EventParserImpl.ParseStreamStart. produce()EventProduction. produce()
-