Uses of Interface
io.helidon.config.spi.ConfigNode.ObjectNode.Builder
Packages that use ConfigNode.ObjectNode.Builder
Package
Description
Provides interfaces and classes for loading and working with immutable, tree-structured
configuration data.
Configuration SPI that defines the behavior developers can implement to extend the config system.
-
Uses of ConfigNode.ObjectNode.Builder in io.helidon.config
Classes in io.helidon.config that implement ConfigNode.ObjectNode.BuilderMethods in io.helidon.config that return ConfigNode.ObjectNode.BuilderModifier and TypeMethodDescriptionObjectNodeBuilderImpl.addList(String key, ConfigNode.ListNode list) ObjectNodeBuilderImpl.addObject(String key, ConfigNode.ObjectNode object) ObjectNodeBuilderImpl.addValue(String key, ConfigNode.ValueNode value) -
Uses of ConfigNode.ObjectNode.Builder in io.helidon.config.spi
Methods in io.helidon.config.spi that return ConfigNode.ObjectNode.BuilderModifier and TypeMethodDescriptionConfigNode.ObjectNode.Builder.addList(String key, ConfigNode.ListNode list) Sets List node associated with specifiedkey.ConfigNode.ObjectNode.Builder.addNode(String key, ConfigNode node) Add a config node.ConfigNode.ObjectNode.Builder.addObject(String key, ConfigNode.ObjectNode object) Sets Object node associated with specifiedkey.ConfigNode.ObjectNode.Builder.addValue(String key, ConfigNode.ValueNode value) Sets String value associated with specifiedkey.default ConfigNode.ObjectNode.BuilderSets String value associated with specifiedkey.ConfigNode.ObjectNode.builder()Creates new instance ofConfigNode.ObjectNode.Builder.Sets the node value associated with the current node.