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.
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 TypeClassDescriptionclassConfigParserimplementation that parses Java Properties content.Methods in io.helidon.config that return ConfigParserModifier and TypeMethodDescriptionstatic ConfigParserConfigParsers.properties()Returns aConfigParserimplementation that parses Java Properties content (the media typeMediaTypes.TEXT_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 aConfigParserinstance that can be used by config system to parseConfigParser.ContentofParsableSource.protected BAbstractConfigSourceBuilder.parser(ConfigParser parser) A parser if this is aParsableSourceand 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.hocon
Classes in io.helidon.config.hocon that implement ConfigParserModifier and TypeClassDescriptionclassTypesafe (Lightbend) Config (HOCON)ConfigParserimplementation that supports following media types:MediaTypes.APPLICATION_HOCONandMediaTypes.APPLICATION_JSON.Classes in io.helidon.config.hocon that implement interfaces with type arguments of type ConfigParserModifier and TypeClassDescriptionfinal classHOCON ConfigParser Builder. -
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 TypeClassDescriptionclassYAMLConfigParserimplementation that supportsMediaTypes.APPLICATION_YAML.