Configuration Nodes
Stability
This API is currently unstable. It may change between minor versions without warning.
Structure
Internally, a configuration is represented by a set of nodes. Each node represents some value. We can see the node structure for some YAML:
number: 10
string: abcdefg
list:
- 1
- 2
- 3
mapping:
a: b
c: dIn this case, the underlying node structure would look something like this:
Some values such as Number(10) can even be interpreted as String("10") depending on the context.
Last updated