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 YamlSequence |
W3cDomUtil.getWrappedYamlSequence(Node node)
Returns the the wrapped
YamlSequence instance of the
provided Node if the node is an instance of
ElementAdapter and the YAML node wrapped by the node
is a YamlSequence . |
Modifier and Type | Interface and Description |
---|---|
interface |
MutableYamlSequence
Mutable interface of
YamlSequence |
Modifier and Type | Method and Description |
---|---|
static YamlSequence |
YamlUtil.asSequence(YamlNode node)
Takes a generic
YamlNode instance and returns it casted to
YamlSequence if the type of the node is a descendant of
YamlSequence . |
YamlSequence |
YamlSequence.childAsSequence(int index)
Gets a child sequence node by its index
|
YamlSequence |
YamlMappingImpl.childAsSequence(String name) |
YamlSequence |
YamlMapping.childAsSequence(String name)
Gets a child sequence node by its name
|
Copyright © 2021 Hazelcast, Inc.. All Rights Reserved.