Uses of Class
org.snakeyaml.engine.v2.nodes.MappingNode
Packages that use MappingNode
-
Uses of MappingNode in org.snakeyaml.engine.v2.composer
Methods in org.snakeyaml.engine.v2.composer with parameters of type MappingNodeModifier and TypeMethodDescriptionprotected Node
Composer.composeKeyNode
(MappingNode node) To be able to override composeNode(node) which is a keyprotected void
Composer.composeMappingChildren
(List<NodeTuple> children, MappingNode node) Add the provided Node to the children as the last childprotected Node
Composer.composeValueNode
(MappingNode node) To be able to override composeNode(node) which is a value -
Uses of MappingNode in org.snakeyaml.engine.v2.constructor
Methods in org.snakeyaml.engine.v2.constructor with parameters of type MappingNodeModifier and TypeMethodDescriptionBaseConstructor.constructMapping
(MappingNode node) Create filled Map from the provided Nodeprotected void
BaseConstructor.constructMapping2ndStep
(MappingNode node, Map<Object, Object> mapping) Fill the mapping with the data from provided nodeprotected void
StandardConstructor.constructMapping2ndStep
(MappingNode node, Map<Object, Object> mapping) BaseConstructor.constructSet
(MappingNode node) Create instance of Set from mapping nodeprotected void
BaseConstructor.constructSet2ndStep
(MappingNode node, Set<Object> set) Fill the Map with the data from the nodeprotected void
StandardConstructor.constructSet2ndStep
(MappingNode node, Set<Object> set) BaseConstructor.createEmptyMapFor
(MappingNode node) Create Map implementation.BaseConstructor.createEmptySetForNode
(MappingNode node) Create Set implementation.protected void
StandardConstructor.flattenMapping
(MappingNode node) Flattening is not required because merge was removed from YAML 1.2 Only check duplicationsprotected void
StandardConstructor.processDuplicateKeys
(MappingNode node) detect and process the duplicate key in mapping according to the configured setting