Uses of Interface
com.amihaiemil.eoyaml.YamlMapping
-
Packages that use YamlMapping Package Description com.amihaiemil.eoyaml com.amihaiemil.eoyaml.extensions This package contains convenient extensions for both YamlMapping and YamlSequence that provide all sorts of different functionality. -
-
Uses of YamlMapping in com.amihaiemil.eoyaml
Classes in com.amihaiemil.eoyaml that implement YamlMapping Modifier and Type Class Description classBaseYamlMappingBase YamlMapping which all implementations of YamlMapping should extend.classEmptyYamlMappingRepresentation of an empty YAML Mapping (or "{}").classStrictYamlMappingDeprecated.This class will be moved to the extensions package in one of the future releases.Methods in com.amihaiemil.eoyaml that return YamlMapping Modifier and Type Method Description YamlMappingYamlNode. asMapping()Gives a Mapping value of the node.default YamlMappingYamlMappingBuilder. build()Build the YamlMapping.YamlMappingYamlMappingBuilder. build(String comment)Build the YamlMapping.default YamlMappingYamlDump. dumpMapping()Convenience method, equivalent to calling the dump(...) method and casting the YamlNode to YamlMapping.static YamlMappingYaml. fromJsonObject(javax.json.JsonObject object)Create a YAML mapping from aJsonObject.YamlMappingYamlInput. readYamlMapping()Read the given input as a Yaml mapping.YamlMappingStrictYamlSequence. yamlMapping(int index)Deprecated.Get the Yaml mapping from the given index.default YamlMappingYamlMapping. yamlMapping(YamlNode key)Get the Yaml mapping associated with the given key.default YamlMappingYamlMapping. yamlMapping(String key)Get the Yaml mapping associated with the given key.default YamlMappingYamlSequence. yamlMapping(int index)Get the Yaml mapping from the given index.Constructors in com.amihaiemil.eoyaml with parameters of type YamlMapping Constructor Description EmptyYamlMapping(YamlMapping mapping)Wrap an existing mapping - expects comments() to be implemented.StrictYamlMapping(YamlMapping decorated)Deprecated.Ctor. -
Uses of YamlMapping in com.amihaiemil.eoyaml.extensions
Classes in com.amihaiemil.eoyaml.extensions that implement YamlMapping Modifier and Type Class Description classMergedYamlMappingMerge two YAML Mappings into a single one.Constructors in com.amihaiemil.eoyaml.extensions with parameters of type YamlMapping Constructor Description MergedYamlMapping(YamlMapping original, YamlMapping changed)Constructor.MergedYamlMapping(YamlMapping original, YamlMapping changed, boolean overrideConflicts)Constructor.MergedYamlMapping(YamlMapping original, Supplier<YamlMapping> changed)Constructor.MergedYamlMapping(YamlMapping original, Supplier<YamlMapping> changed, boolean overrideConflicts)Constructor.Constructor parameters in com.amihaiemil.eoyaml.extensions with type arguments of type YamlMapping Constructor Description MergedYamlMapping(YamlMapping original, Supplier<YamlMapping> changed)Constructor.MergedYamlMapping(YamlMapping original, Supplier<YamlMapping> changed, boolean overrideConflicts)Constructor.
-