Uses of Interface
io.helidon.config.spi.ConfigParser
-
Packages that use ConfigParser Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.etcd Etcd configuration source.io.helidon.config.git Git configuration source.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 ConfigParser in io.helidon.config
Classes in io.helidon.config that implement ConfigParser Modifier and Type Class Description class
PropertiesConfigParser
ConfigParser
implementation that parses Java Properties content.Methods in io.helidon.config that return ConfigParser Modifier and Type Method Description static 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 ConfigParser Modifier and Type Method Description protected Optional<ConfigParser>
AbstractConfigSource. parser()
Config parser if one is configured to use for parsing content ofParsableSource
.Optional<ConfigParser>
ClasspathConfigSource. parser()
Optional<ConfigParser>
FileConfigSource. parser()
Optional<ConfigParser>
UrlConfigSource. parser()
Methods in io.helidon.config with parameters of type ConfigParser Modifier and Type Method Description Config.Builder
Config.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
ClasspathConfigSource.Builder. parser(ConfigParser parser)
FileConfigSource.Builder
FileConfigSource.Builder. parser(ConfigParser parser)
UrlConfigSource.Builder
UrlConfigSource.Builder. parser(ConfigParser parser)
Method parameters in io.helidon.config with type arguments of type ConfigParser Modifier and Type Method Description B
AbstractConfigSourceBuilder. 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 ConfigParser Modifier and Type Method Description Optional<ConfigParser>
EtcdConfigSource. parser()
Methods in io.helidon.config.etcd with parameters of type ConfigParser Modifier and Type Method Description EtcdConfigSourceBuilder
EtcdConfigSourceBuilder. parser(ConfigParser parser)
-
Uses of ConfigParser in io.helidon.config.git
Methods in io.helidon.config.git that return types with arguments of type ConfigParser Modifier and Type Method Description Optional<ConfigParser>
GitConfigSource. parser()
Methods in io.helidon.config.git with parameters of type ConfigParser Modifier and Type Method Description GitConfigSourceBuilder
GitConfigSourceBuilder. parser(ConfigParser parser)
-
Uses of ConfigParser in io.helidon.config.hocon
Classes in io.helidon.config.hocon that implement ConfigParser Modifier and Type Class Description class
HoconConfigParser
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 ConfigParser Modifier and Type Method Description Optional<ConfigParser>
ParsableSource. parser()
If a parser is configured with this source, return it.Methods in io.helidon.config.spi with parameters of type ConfigParser Modifier and Type Method Description B
ParsableSource.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 ConfigParser Modifier and Type Class Description class
YamlConfigParser
YAMLConfigParser
implementation that supports "application/x-yaml".
-