Package | Description |
---|---|
com.hazelcast.config.yaml |
Contains adapter and utility classes needed to adapt YAML DOM classes
as W3C DOM ones, making config builders that accept W3C DOM able to
build the config structure from YAML.
|
com.hazelcast.internal.yaml |
Contains classes for loading, parsing YAML documents and building a
YAML specific DOM of
YamlNode instances
The YAML documents are loaded and parsed with the external SnakeYaml
parser, which supports YAML 1.2 documents, and the JSON schema. |
Modifier and Type | Method and Description |
---|---|
static YamlMapping |
W3cDomUtil.getWrappedYamlMapping(Node node)
Returns the the wrapped
YamlMapping instance of the
provided Node if the node is an instance of
ElementAdapter and the YAML node wrapped by the node
is a YamlMapping . |
Modifier and Type | Interface and Description |
---|---|
interface |
MutableYamlMapping
Mutable interface of
YamlMapping |
Modifier and Type | Class and Description |
---|---|
class |
YamlMappingImpl |
Modifier and Type | Method and Description |
---|---|
static YamlMapping |
YamlUtil.asMapping(YamlNode node)
Takes a generic
YamlNode instance and returns it casted to
YamlMapping if the type of the node is a descendant of
YamlMapping . |
YamlMapping |
YamlSequence.childAsMapping(int index)
Gets a child mapping node by its index
|
YamlMapping |
YamlMappingImpl.childAsMapping(String name) |
YamlMapping |
YamlMapping.childAsMapping(String name)
Gets a child mapping node by its name
|
Copyright © 2021 Hazelcast, Inc.. All Rights Reserved.