Interface | Description |
---|---|
Scalar |
Yaml Scalar.
|
YamlInput |
Yaml input.
|
YamlMapping |
A Yaml mapping.
|
YamlMappingBuilder |
Builder of YamlMapping.
|
YamlNode |
YAML node.
|
YamlSequence |
A Yaml sequence.
|
YamlSequenceBuilder |
Builder of YamlSequence.
|
YamlStream |
A YAML Stream of documents.
|
YamlStreamBuilder |
Builder of YamlStream.
|
Class | Description |
---|---|
AbstractYamlDump |
A Yaml representer.
|
StrictYamlMapping |
Decorator for a
YamlMapping which throws
YamlNodenotFoundException, instead of returning null,
if a given key doesn't exist in the mapping, or if it points
to a different type of node than the demanded one.It is based on the fail-fast and null-is-bad idea see here: http://www.yegor256.com/2014/05/13/why-null-is-bad.html |
StrictYamlSequence |
Decorator for a
YamlSequence which throws YamlNodeNotFoundException
if any of the methods of the decorated YamlSequence returns null
(if the given index points to a YamlNode that is not a YamlMapping,
for instance). |
Yaml |
Yaml.
|
YamlCollectionDump |
A collection represented as YamlNode.
|
YamlMapDump |
A Map represented as YamlNode.
|
YamlObjectDump |
An Object represented as a YamlMapping.
|
Exception | Description |
---|---|
YamlNodeNotFoundException |
Exception thrown when a YamlNode cannot be cast to a given type.
|
Copyright © 2020. All rights reserved.