Uses of Interface
io.helidon.config.spi.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
Modifier and TypeClassDescriptionclass
ConfigParser
implementation that parses Java Properties content.Modifier and TypeMethodDescriptionstatic ConfigParser
ConfigParsers.properties()
Returns aConfigParser
implementation that parses Java Properties content (the media typePropertiesConfigParser.MEDIA_TYPE_TEXT_JAVA_PROPERTIES
).Modifier and TypeMethodDescriptionprotected Optional
<ConfigParser> AbstractConfigSource.parser()
Config parser if one is configured to use for parsing content ofParsableSource
.ClasspathConfigSource.parser()
FileConfigSource.parser()
UrlConfigSource.parser()
Modifier and TypeMethodDescriptionConfig.Builder.addParser
(ConfigParser configParser) Registers aConfigParser
instance that can be used by config system to 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) Modifier 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
-
Uses of ConfigParser in io.helidon.config.git
-
Uses of ConfigParser in io.helidon.config.hocon
Modifier and TypeClassDescriptionclass
Typesafe (Lightbend) Config (HOCON)ConfigParser
implementation that supports following media types:MediaTypes.APPLICATION_HOCON
andMediaTypes.APPLICATION_JSON
. -
Uses of ConfigParser in io.helidon.config.spi
Modifier and TypeMethodDescriptionParsableSource.parser()
If a parser is configured with this source, return it.Modifier and TypeMethodDescriptionParsableSource.Builder.parser
(ConfigParser parser) Configure an explicit parser to be used with the source. -
Uses of ConfigParser in io.helidon.config.yaml
Modifier and TypeClassDescriptionclass
YAMLConfigParser
implementation that supportsMediaTypes.APPLICATION_YAML
.