Uses of Class
org.yaml.snakeyaml.events.Event

Packages that use Event
org.yaml.snakeyaml   
org.yaml.snakeyaml.emitter   
org.yaml.snakeyaml.events   
org.yaml.snakeyaml.parser   
 

Uses of Event in org.yaml.snakeyaml
 

Methods in org.yaml.snakeyaml that return types with arguments of type Event
 Iterable<Event> Yaml.parse(Reader yaml)
          Parse a YAML stream and produce parsing events.
 List<Event> Yaml.serialize(Node data)
          Serialize the representation tree into Events.
 

Uses of Event in org.yaml.snakeyaml.emitter
 

Methods in org.yaml.snakeyaml.emitter with parameters of type Event
 void Emitter.emit(Event event)
           
 void Emitable.emit(Event event)
           
 

Uses of Event in org.yaml.snakeyaml.events
 

Subclasses of Event in org.yaml.snakeyaml.events
 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 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
 

Methods in org.yaml.snakeyaml.parser that return Event
 Event Parser.getEvent()
          Returns the next event.
 Event ParserImpl.getEvent()
          Get the next event and proceed further.
 Event Parser.peekEvent()
          Return the next event, but do not delete it from the stream.
 Event ParserImpl.peekEvent()
          Get the next event.
 



Copyright © 2008-2012. All Rights Reserved.