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
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.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)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
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.ParseBlockNode. produce()EventParserImpl.ParseBlockSequenceEntry. produce()EventParserImpl.ParseBlockSequenceFirstEntry. produce()EventParserImpl.ParseDocumentContent. produce()EventParserImpl.ParseDocumentEnd. produce()EventParserImpl.ParseDocumentStart. 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.ParseIndentlessSequenceEntry. produce()EventParserImpl.ParseStreamStart. produce()EventProduction. produce()
-