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. events
private java.util.Iterator<Event>
Yaml.EventIterable. iterator
Methods 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 void
Yaml.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. eventSource
Methods in org.yaml.snakeyaml.comments that return Event Modifier and Type Method Description Event
CommentEventsCollector. 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.Event
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.yaml.snakeyaml.comments with parameters of type Event Modifier and Type Method Description Event
CommentEventsCollector. 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.Event
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.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 Event
Emitter. event
Fields in org.yaml.snakeyaml.emitter with type parameters of type Event Modifier and Type Field Description private java.util.Queue<Event>
Emitter. events
Methods in org.yaml.snakeyaml.emitter with parameters of type Event Modifier and Type Method Description void
Emitable. emit(Event event)
Push event to bytesvoid
Emitter. emit(Event event)
private boolean
Emitter. isFoldedOrLiteral(Event event)
Method parameters in org.yaml.snakeyaml.emitter with type arguments of type Event Modifier and Type Method Description private boolean
Emitter. 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 class
AliasEvent
Marks the inclusion of a previously anchored node.class
CollectionEndEvent
Base class for the end events of the collection nodes.class
CollectionStartEvent
Base class for the start events of the collection nodes.class
CommentEvent
Marks a comment block value.class
DocumentEndEvent
Marks the end of a document.class
DocumentStartEvent
Marks the beginning of a document.class
MappingEndEvent
Marks the end of a mapping node.class
MappingStartEvent
Marks the beginning of a mapping node.class
NodeEvent
Base class for all events that mark the beginning of a node.class
ScalarEvent
Marks a scalar value.class
SequenceEndEvent
Marks the end of a sequence.class
SequenceStartEvent
Marks the beginning of a sequence node.class
StreamEndEvent
Marks the end of a stream that might have contained multiple documents.class
StreamStartEvent
Marks 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 Event
ParserImpl. currentEvent
Methods in org.yaml.snakeyaml.parser that return Event Modifier and Type Method Description Event
Parser. getEvent()
Returns the next event.Event
ParserImpl. getEvent()
Get the next event and proceed further.private Event
ParserImpl. parseBlockNodeOrIndentlessSequence()
private Event
ParserImpl. parseFlowNode()
private Event
ParserImpl. parseNode(boolean block, boolean indentlessSequence)
Event
Parser. peekEvent()
Return the next event, but do not delete it from the stream.Event
ParserImpl. peekEvent()
Get the next event.private Event
ParserImpl. processEmptyScalar(Mark mark)
block_mapping ::= BLOCK-MAPPING_START ((KEY block_node_or_indentless_sequence?)? (VALUE block_node_or_indentless_sequence?)?)* BLOCK-ENDEvent
ParserImpl.ParseBlockMappingFirstKey. produce()
Event
ParserImpl.ParseBlockMappingKey. produce()
Event
ParserImpl.ParseBlockMappingValue. produce()
Event
ParserImpl.ParseBlockMappingValueComment. produce()
Event
ParserImpl.ParseBlockMappingValueCommentList. produce()
Event
ParserImpl.ParseBlockNode. produce()
Event
ParserImpl.ParseBlockSequenceEntryKey. produce()
Event
ParserImpl.ParseBlockSequenceEntryValue. produce()
Event
ParserImpl.ParseBlockSequenceFirstEntry. produce()
Event
ParserImpl.ParseDocumentContent. produce()
Event
ParserImpl.ParseDocumentEnd. produce()
Event
ParserImpl.ParseDocumentStart. produce()
Event
ParserImpl.ParseFlowEndComment. produce()
Event
ParserImpl.ParseFlowMappingEmptyValue. produce()
Event
ParserImpl.ParseFlowMappingFirstKey. produce()
Event
ParserImpl.ParseFlowMappingKey. produce()
Event
ParserImpl.ParseFlowMappingValue. produce()
Event
ParserImpl.ParseFlowSequenceEntry. produce()
Event
ParserImpl.ParseFlowSequenceEntryMappingEnd. produce()
Event
ParserImpl.ParseFlowSequenceEntryMappingKey. produce()
Event
ParserImpl.ParseFlowSequenceEntryMappingValue. produce()
Event
ParserImpl.ParseFlowSequenceFirstEntry. produce()
Event
ParserImpl.ParseImplicitDocumentStart. produce()
Event
ParserImpl.ParseIndentlessSequenceEntryKey. produce()
Event
ParserImpl.ParseIndentlessSequenceEntryValue. produce()
Event
ParserImpl.ParseStreamStart. produce()
Event
Production. produce()
-