Uses of Interface
io.helidon.config.spi.ConfigParser
Packages that use ConfigParser
Package
Description
Provides interfaces and classes for loading and working with immutable, tree-structured
configuration data.
Etcd configuration source.
Git configuration source.
HOCON format ConfigParser implementation using Typesafe (Lightbend) Config library.
Configuration SPI that defines the behavior developers can implement to extend the config system.
YAML format ConfigParser implementation.
-
Uses of ConfigParser in io.helidon.config
Classes in io.helidon.config that implement ConfigParserModifier and TypeClassDescriptionclass
ConfigParser
implementation that parses Java Properties content.Methods in io.helidon.config that return ConfigParserModifier and TypeMethodDescriptionstatic ConfigParser
ConfigParsers.properties()
Returns aConfigParser
implementation that parses Java Properties content (the media type "text/x-java-properties").Methods in io.helidon.config that return types with arguments of type ConfigParserModifier and TypeMethodDescriptionprotected Optional<ConfigParser>
AbstractConfigSource.parser()
Config parser if one is configured to use for parsing content ofParsableSource
.ClasspathConfigSource.parser()
FileConfigSource.parser()
UrlConfigSource.parser()
Methods in io.helidon.config with parameters of type ConfigParserModifier and TypeMethodDescriptionConfig.Builder.addParser
(ConfigParser configParser) Registers aConfigParser
instance that can be used by config system to parse parseConfigParser.Content
ofParsableSource
.protected B
AbstractConfigSourceBuilder.parser
(ConfigParser parser) A parser if this is aParsableSource
and explicit parser is configured.ClasspathConfigSource.Builder.parser
(ConfigParser parser) FileConfigSource.Builder.parser
(ConfigParser parser) UrlConfigSource.Builder.parser
(ConfigParser parser) Method parameters in io.helidon.config with type arguments of type ConfigParserModifier and TypeMethodDescriptionAbstractConfigSourceBuilder.parserMapping
(Function<Config.Key, Optional<ConfigParser>> parserMapping) Sets a function that maps keys to a parser. -
Uses of ConfigParser in io.helidon.config.etcd
Methods in io.helidon.config.etcd that return types with arguments of type ConfigParserMethods in io.helidon.config.etcd with parameters of type ConfigParser -
Uses of ConfigParser in io.helidon.config.git
Methods in io.helidon.config.git that return types with arguments of type ConfigParserMethods in io.helidon.config.git with parameters of type ConfigParser -
Uses of ConfigParser in io.helidon.config.hocon
Classes in io.helidon.config.hocon that implement ConfigParserModifier and TypeClassDescriptionclass
Typesafe (Lightbend) Config (HOCON)ConfigParser
implementation that supports following media types: "application/hocon" and "application/json". -
Uses of ConfigParser in io.helidon.config.spi
Methods in io.helidon.config.spi that return types with arguments of type ConfigParserModifier and TypeMethodDescriptionParsableSource.parser()
If a parser is configured with this source, return it.Methods in io.helidon.config.spi with parameters of type ConfigParserModifier and TypeMethodDescriptionParsableSource.Builder.parser
(ConfigParser parser) Configure an explicit parser to be used with the source. -
Uses of ConfigParser in io.helidon.config.yaml
Classes in io.helidon.config.yaml that implement ConfigParserModifier and TypeClassDescriptionclass
YAMLConfigParser
implementation that supports "application/x-yaml".