Class ParserImpl.ParseBlockNode

  • All Implemented Interfaces:
    Production
    Enclosing class:
    ParserImpl

    private class ParserImpl.ParseBlockNode
    extends java.lang.Object
    implements Production
      block_node_or_indentless_sequence ::= ALIAS
                    | properties (block_content | indentless_block_sequence)?
                    | block_content
                    | indentless_block_sequence
      block_node    ::= ALIAS
                        | properties block_content?
                        | block_content
      flow_node     ::= ALIAS
                        | properties flow_content?
                        | flow_content
      properties    ::= TAG ANCHOR? | ANCHOR TAG?
      block_content     ::= block_collection | flow_collection | SCALAR
      flow_content      ::= flow_collection | SCALAR
      block_collection  ::= block_sequence | block_mapping
      flow_collection   ::= flow_sequence | flow_mapping
     
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ParseBlockNode()  
    • Method Summary

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

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

      • ParseBlockNode

        private ParseBlockNode()