| Modifier and Type | Interface and Description |
|---|---|
interface |
YAMLScalar
A YAML scalar.
|
| Modifier and Type | Class and Description |
|---|---|
class |
YAMLBoolean
A YAML boolean scalar.
|
class |
YAMLDecimal
A YAML decimal (float) scalar.
|
class |
YAMLInt
A YAML integer scalar.
|
class |
YAMLLong
A YAML long integer scalar.
|
class |
YAMLMapping
A YAML mapping.
|
class |
YAMLSequence
A YAML sequence.
|
class |
YAMLString
A YAML string scalar.
|
| Modifier and Type | Method and Description |
|---|---|
YAMLNode |
YAMLDocument.getRootNode()
Get the root node of the document.
|
| Constructor and Description |
|---|
YAMLDocument(YAMLNode rootNode)
Construct a
YAMLDocument with the supplied root node and default version numbers |
YAMLDocument(YAMLNode rootNode,
int majorVersion,
int minorVersion)
Construct a
YAMLDocument with the supplied root node, major version number and minor version number |
| Constructor and Description |
|---|
YAMLMapping(Map<String,YAMLNode> map)
Construct a
YAMLMapping with the given Map and the default tag. |
YAMLMapping(Map<String,YAMLNode> map,
String tag)
Construct a
YAMLMapping with the given Map and tag. |
YAMLSequence(List<YAMLNode> list)
Construct a
YAMLSequence with the given List and the default tag. |
YAMLSequence(List<YAMLNode> list,
String tag)
Construct a
YAMLSequence with the given List and tag. |
Copyright © 2021. All rights reserved.