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