Uses of Interface
org.snakeyaml.engine.v2.parser.Production
Packages that use Production
-
Uses of Production in org.snakeyaml.engine.v2.parser
Classes in org.snakeyaml.engine.v2.parser that implement ProductionModifier and TypeClassDescriptionprivate classprivate classprivate classprivate classprivate classprivate classblock_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_mappingprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classflow_mapping ::= FLOW-MAPPING-START (flow_mapping_entry FLOW-ENTRY)* flow_mapping_entry? FLOW-MAPPING-END flow_mapping_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?private classprivate classprivate classprivate classprivate classprivate classprivate classflow_sequence ::= FLOW-SEQUENCE-START (flow_sequence_entry FLOW-ENTRY)* flow_sequence_entry? FLOW-SEQUENCE-END flow_sequence_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)? Note that while production rules for both flow_sequence_entry and flow_mapping_entry are equal, their interpretations are different.private classprivate classprivate classprivate classFields in org.snakeyaml.engine.v2.parser with type parameters of type ProductionModifier and TypeFieldDescriptionprivate Optional<Production> ParserImpl.stateprivate final ArrayStack<Production> ParserImpl.states