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.hocon HOCON format ConfigParser implementation using Typesafe (Lightbend) Config library.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system.io.helidon.config.yaml YAML format ConfigParser implementation. -
-
Uses of ConfigNode.ObjectNode in io.helidon.config
Classes in io.helidon.config that implement ConfigNode.ObjectNode Modifier and Type Class Description classObjectNodeImplImplementsConfigNode.ObjectNode.Methods in io.helidon.config that return ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNodePropertiesConfigParser. parse(ConfigParser.Content content)Methods in io.helidon.config that return types with arguments of type ConfigNode.ObjectNode Modifier and Type Method Description Optional<ConfigNode.ObjectNode>ConfigSourceRuntime. load()Load the config source if it is eager (such asParsableSourceorNodeConfigSource.Methods in io.helidon.config with parameters of type ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ListNode.BuilderListNodeBuilderImpl. addObject(ConfigNode.ObjectNode object)ConfigNode.ObjectNode.BuilderObjectNodeBuilderImpl. addObject(String key, ConfigNode.ObjectNode object)static NodeConfigSourceConfigSources. create(ConfigNode.ObjectNode objectNode)Returns aConfigSourcethat wraps the specifiedobjectNode.static Map<String,String>ConfigHelper. flattenNodes(ConfigNode.ObjectNode objectNode)Create a map of keys to string values from an object node.static ObjectNodeImplObjectNodeImpl. wrap(ConfigNode.ObjectNode objectNode)Wraps value node into mergeable value node.static ObjectNodeImplObjectNodeImpl. wrap(ConfigNode.ObjectNode objectNode, Function<String,String> resolveTokenFunction)Wraps value node into mergeable value node. -
Uses of ConfigNode.ObjectNode in io.helidon.config.hocon
Methods in io.helidon.config.hocon that return ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNodeHoconConfigParser. parse(ConfigParser.Content content)ConfigNode.ObjectNodeHoconConfigParser. parse(ConfigParser.Content content, Function<String,Optional<InputStream>> relativeResolver) -
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.ObjectNodeConfigNode.ObjectNode.Builder. build()Build new instance ofConfigNode.ObjectNode.ConfigNode.ObjectNodeConfigContent.NodeContent. data()Data of this config source.static ConfigNode.ObjectNodeConfigNode.ObjectNode. empty()Returns empty object node.ConfigNode.ObjectNodeMergingStrategy. merge(List<ConfigNode.ObjectNode> rootNodes)Merges an ordered list ofConfigNode.ObjectNodes into a single instance.ConfigNode.ObjectNodeConfigParser. parse(ConfigParser.Content content)Deprecated.default ConfigNode.ObjectNodeConfigParser. parse(ConfigParser.Content content, Function<String,Optional<InputStream>> relativeResolver)Parses a specifiedConfigContentinto ahierarchical configuration representation.static ConfigNode.ObjectNodeConfigNode.ObjectNode. simple(String key, String value)Returns an object node containing a single simple value.Methods in io.helidon.config.spi with parameters of type ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ListNode.BuilderConfigNode.ListNode.Builder. addObject(ConfigNode.ObjectNode object)Adds Object node to the list.ConfigNode.ObjectNode.BuilderConfigNode.ObjectNode.Builder. addObject(String key, ConfigNode.ObjectNode object)Sets Object node associated with specifiedkey.ConfigContent.NodeContent.BuilderConfigContent.NodeContent.Builder. node(ConfigNode.ObjectNode rootNode)Node with the configuration of this content.Method parameters in io.helidon.config.spi with type arguments of type ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNodeMergingStrategy. merge(List<ConfigNode.ObjectNode> rootNodes)Merges an ordered list ofConfigNode.ObjectNodes into a single instance. -
Uses of ConfigNode.ObjectNode in io.helidon.config.yaml
Methods in io.helidon.config.yaml that return ConfigNode.ObjectNode Modifier and Type Method Description ConfigNode.ObjectNodeYamlConfigParser. parse(ConfigParser.Content content)
-