Class Emitter

  • All Implemented Interfaces:
    Emitable

    public final class Emitter
    extends java.lang.Object
    implements Emitable
     Emitter expects events obeying the following grammar:
     stream ::= STREAM-START document* STREAM-END
     document ::= DOCUMENT-START node DOCUMENT-END
     node ::= SCALAR | sequence | mapping
     sequence ::= SEQUENCE-START node* SEQUENCE-END
     mapping ::= MAPPING-START (node node)* MAPPING-END
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int MAX_INDENT  
      static int MIN_INDENT  
    • Constructor Summary

      Constructors 
      Constructor Description
      Emitter​(java.io.Writer stream, DumperOptions opts)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void emit​(Event event)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Emitter

        public Emitter​(java.io.Writer stream,
                       DumperOptions opts)
    • Method Detail

      • emit

        public void emit​(Event event)
                  throws java.io.IOException
        Specified by:
        emit in interface Emitable
        Throws:
        java.io.IOException