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 classPropertiesConfigParserConfigParserimplementation that parses Java Properties content.Methods in io.helidon.config that return ConfigParser Modifier and Type Method Description static ConfigParserConfigParsers. properties()Returns aConfigParserimplementation 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.BuilderConfig.Builder. addParser(ConfigParser configParser)Registers aConfigParserinstance that can be used by config system to parse parseConfigParser.ContentofParsableSource.protected BAbstractConfigSourceBuilder. parser(ConfigParser parser)A parser if this is aParsableSourceand explicit parser is configured.ClasspathConfigSource.BuilderClasspathConfigSource.Builder. parser(ConfigParser parser)FileConfigSource.BuilderFileConfigSource.Builder. parser(ConfigParser parser)UrlConfigSource.BuilderUrlConfigSource.Builder. parser(ConfigParser parser)Method parameters in io.helidon.config with type arguments of type ConfigParser Modifier and Type Method Description BAbstractConfigSourceBuilder. 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 EtcdConfigSourceBuilderEtcdConfigSourceBuilder. 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 GitConfigSourceBuilderGitConfigSourceBuilder. 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 classHoconConfigParserTypesafe (Lightbend) Config (HOCON)ConfigParserimplementation 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 BParsableSource.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 classYamlConfigParserYAMLConfigParserimplementation that supports "application/x-yaml".
-