Uses of Interface
io.helidon.config.spi.ConfigNode.ObjectNode
-
Packages that use ConfigNode.ObjectNode Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of ConfigNode.ObjectNode in io.helidon.config
Methods in io.helidon.config that return ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNode
ConfigSources.MergingStrategy. merge(List<ConfigNode.ObjectNode> rootNodes)
Merges an ordered list ofConfigNode.ObjectNode
s into a single instance.Methods in io.helidon.config with parameters of type ConfigNode.ObjectNode Modifier and Type Method Description static ConfigSource
ConfigSources. create(ConfigNode.ObjectNode objectNode)
Returns aConfigSource
that wraps the specifiedobjectNode
and returns it whenSource.load()
is invoked.Method parameters in io.helidon.config with type arguments of type ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNode
ConfigSources.MergingStrategy. merge(List<ConfigNode.ObjectNode> rootNodes)
Merges an ordered list ofConfigNode.ObjectNode
s into a single instance. -
Uses of ConfigNode.ObjectNode in io.helidon.config.spi
Methods in io.helidon.config.spi that return ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNode
ConfigNode.ObjectNode.Builder. build()
Build new instance ofConfigNode.ObjectNode
.static ConfigNode.ObjectNode
ConfigNode.ObjectNode. empty()
Returns empty object node.<S> ConfigNode.ObjectNode
ConfigParser. parse(ConfigParser.Content<S> content)
Parses a specifiedConfigParser.Content
into ahierarchical configuration representation
.Methods in io.helidon.config.spi that return types with arguments of type ConfigNode.ObjectNode Modifier and Type Method Description Flow.Publisher<Optional<ConfigNode.ObjectNode>>
AbstractConfigSource. changes()
Returns aFlow.Publisher
to which the caller can subscribe in order to receive change notifications.protected AbstractSource.Data<ConfigNode.ObjectNode,S>
AbstractParsableConfigSource. loadData()
protected AbstractSource.Data<ConfigNode.ObjectNode,S>
AbstractConfigSource. processLoadedData(AbstractSource.Data<ConfigNode.ObjectNode,S> data)
Methods in io.helidon.config.spi with parameters of type ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ListNode.Builder
ConfigNode.ListNode.Builder. addObject(ConfigNode.ObjectNode object)
Adds Object node to the list.ConfigNode.ObjectNode.Builder
ConfigNode.ObjectNode.Builder. addObject(String key, ConfigNode.ObjectNode object)
Sets Object node associated with specifiedkey
.Method parameters in io.helidon.config.spi with type arguments of type ConfigNode.ObjectNode Modifier and Type Method Description protected AbstractSource.Data<ConfigNode.ObjectNode,S>
AbstractConfigSource. processLoadedData(AbstractSource.Data<ConfigNode.ObjectNode,S> data)
-