Uses of Interface
com.amihaiemil.eoyaml.YamlSequence
-
Packages that use YamlSequence 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 YamlSequence in com.amihaiemil.eoyaml
Classes in com.amihaiemil.eoyaml that implement YamlSequence Modifier and Type Class Description classBaseYamlSequenceBase YamlSequence which all implementations should extend.classEmptyYamlSequenceRepresentation of an empty YAML Sequence (or "[]").classStrictYamlSequenceDeprecated.This class will be moved to the extensions package in one of the future releases.Methods in com.amihaiemil.eoyaml that return YamlSequence Modifier and Type Method Description YamlSequenceYamlNode. asSequence()Gives a Sequence value of the node.default YamlSequenceYamlSequenceBuilder. build()Build the YamlSequence.YamlSequenceYamlSequenceBuilder. build(String comment)Build the YamlSequence and specify a comment referring to it.default YamlSequenceYamlDump. dumpSequence()Convenience method, equivalent to calling the dump(...) method and casting the YamlNode to YamlSequence.static YamlSequenceYaml. fromJsonArray(javax.json.JsonArray array)Create a YAML sequence from aJsonArray.YamlSequenceYamlInput. readYamlSequence()Read the given input as a Yaml sequence.YamlSequenceStrictYamlSequence. yamlSequence(int index)Deprecated.Get the Yaml sequence from the given index.default YamlSequenceYamlMapping. yamlSequence(YamlNode key)Get the Yaml sequence associated with the given key.default YamlSequenceYamlMapping. yamlSequence(String key)Get the Yaml sequence associated with the given key.default YamlSequenceYamlSequence. yamlSequence(int index)Get the Yaml sequence from the given index.Constructors in com.amihaiemil.eoyaml with parameters of type YamlSequence Constructor Description EmptyYamlSequence(YamlSequence sequence)Wrap an existing sequence - expects comments() to be implemented.StrictYamlSequence(YamlSequence decorated)Deprecated.Ctor. -
Uses of YamlSequence in com.amihaiemil.eoyaml.extensions
Classes in com.amihaiemil.eoyaml.extensions that implement YamlSequence Modifier and Type Class Description classMergedYamlSequenceMerge two YAML Sequences into a single one.Constructors in com.amihaiemil.eoyaml.extensions with parameters of type YamlSequence Constructor Description MergedYamlSequence(YamlSequence original, YamlSequence changed)Constructor.MergedYamlSequence(YamlSequence original, YamlSequence changed, boolean overrideIndices)Constructor.MergedYamlSequence(YamlSequence original, Supplier<YamlSequence> changed)Constructor.MergedYamlSequence(YamlSequence original, Supplier<YamlSequence> changed, boolean overrideIndices)Constructor.Constructor parameters in com.amihaiemil.eoyaml.extensions with type arguments of type YamlSequence Constructor Description MergedYamlSequence(YamlSequence original, Supplier<YamlSequence> changed)Constructor.MergedYamlSequence(YamlSequence original, Supplier<YamlSequence> changed, boolean overrideIndices)Constructor.
-