Package | Description |
---|---|
org.yaml.snakeyaml.constructor | |
org.yaml.snakeyaml.extensions.compactnotation |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractConstruct |
Because recursive structures are not very common we provide a way to save
some typing when extending a constructor
|
protected class |
Constructor.ConstructMapping |
Construct mapping instance (Map, JavaBean) when the runtime class is
known.
|
protected class |
Constructor.ConstructScalar |
Construct scalar instance when the runtime class is known.
|
protected class |
Constructor.ConstructSequence |
Construct sequence (List, Array, or immutable object) when the runtime
class is known.
|
protected class |
Constructor.ConstructYamlObject |
Construct an instance when the runtime class is not known but a global
tag with a class name is defined.
|
static class |
SafeConstructor.ConstructUndefined |
|
class |
SafeConstructor.ConstructYamlBinary |
|
class |
SafeConstructor.ConstructYamlBool |
|
class |
SafeConstructor.ConstructYamlFloat |
|
class |
SafeConstructor.ConstructYamlInt |
|
class |
SafeConstructor.ConstructYamlMap |
|
class |
SafeConstructor.ConstructYamlNull |
|
class |
SafeConstructor.ConstructYamlOmap |
|
class |
SafeConstructor.ConstructYamlPairs |
|
class |
SafeConstructor.ConstructYamlSeq |
|
class |
SafeConstructor.ConstructYamlSet |
|
class |
SafeConstructor.ConstructYamlStr |
|
static class |
SafeConstructor.ConstructYamlTimestamp |
Modifier and Type | Field | Description |
---|---|---|
protected Map<NodeId,Construct> |
BaseConstructor.yamlClassConstructors |
It maps the node kind to the the Construct implementation.
|
protected Map<Tag,Construct> |
BaseConstructor.yamlConstructors |
It maps the (explicit or implicit) tag to the Construct implementation.
|
protected Map<String,Construct> |
BaseConstructor.yamlMultiConstructors |
It maps the (explicit or implicit) tag to the Construct implementation.
|
Modifier and Type | Method | Description |
---|---|---|
protected Construct |
BaseConstructor.getConstructor(Node node) |
Get the constructor to construct the Node.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CompactConstructor.ConstructCompactObject |
Modifier and Type | Method | Description |
---|---|---|
protected Construct |
CompactConstructor.createCompactConstruct() |
|
protected Construct |
CompactConstructor.getConstructor(Node node) |
Copyright © 2008–2018. All rights reserved.