Uses of Class
org.yaml.snakeyaml.nodes.MappingNode
-
Packages that use MappingNode Package Description org.yaml.snakeyaml.composer org.yaml.snakeyaml.constructor org.yaml.snakeyaml.representer org.yaml.snakeyaml.util -
-
Uses of MappingNode in org.yaml.snakeyaml.composer
Methods in org.yaml.snakeyaml.composer that return MappingNode Modifier and Type Method Description protected MappingNodeComposer. asMappingNode(Node node)Methods in org.yaml.snakeyaml.composer with parameters of type MappingNode Modifier and Type Method Description protected NodeComposer. composeKeyNode(MappingNode node)To be able to override composeNode(node) which is a keyprotected voidComposer. composeMappingChildren(List<NodeTuple> children, MappingNode node)Compose the members of mappingprotected NodeComposer. composeValueNode(MappingNode node)To be able to override composeNode(node) which is a value -
Uses of MappingNode in org.yaml.snakeyaml.constructor
Methods in org.yaml.snakeyaml.constructor with parameters of type MappingNode Modifier and Type Method Description protected ObjectConstructor.ConstructMapping. constructJavaBean2ndStep(MappingNode node, Object object)protected Map<Object,Object>BaseConstructor. constructMapping(MappingNode node)Create Map from mappingprotected voidBaseConstructor. constructMapping2ndStep(MappingNode node, Map<Object,Object> mapping)Fill provided Map with constructed dataprotected voidSafeConstructor. constructMapping2ndStep(MappingNode node, Map<Object,Object> mapping)protected Set<Object>BaseConstructor. constructSet(MappingNode node)Create Set from mappingprotected voidBaseConstructor. constructSet2ndStep(MappingNode node, Set<Object> set)protected voidSafeConstructor. constructSet2ndStep(MappingNode node, Set<Object> set)protected voidSafeConstructor. flattenMapping(MappingNode node)protected voidSafeConstructor. flattenMapping(MappingNode node, boolean forceStringKeys)protected Map<Object,Object>BaseConstructor. newMap(MappingNode node)protected voidSafeConstructor. processDuplicateKeys(MappingNode node)protected voidSafeConstructor. processDuplicateKeys(MappingNode node, boolean forceStringKeys) -
Uses of MappingNode in org.yaml.snakeyaml.representer
Methods in org.yaml.snakeyaml.representer that return MappingNode Modifier and Type Method Description protected MappingNodeRepresenter. representJavaBean(Set<Property> properties, Object javaBean)Tag logic: - explicit root tag is set in serializer - if there is a predefined class tag it is used - a global tag with class name is always used as tag. -
Uses of MappingNode in org.yaml.snakeyaml.util
Methods in org.yaml.snakeyaml.util that return MappingNode Modifier and Type Method Description abstract MappingNodeMergeUtils. asMappingNode(Node node)Converts the specifiednodeinto aMappingNode.Methods in org.yaml.snakeyaml.util with parameters of type MappingNode Modifier and Type Method Description List<NodeTuple>MergeUtils. flatten(MappingNode node)Processes and resolves merge keys in aMappingNode, merging resolved key/values into the node.
-