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.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
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 with parameters of type ConfigParser Modifier and Type Method Description Config.BuilderConfig.Builder. addParser(ConfigParser configParser)Registers aConfigParserinstance that can be used by registeredConfigSources to parseconfiguration content. -
Uses of ConfigParser in io.helidon.config.hocon
Methods in io.helidon.config.hocon that return ConfigParser Modifier and Type Method Description ConfigParserHoconConfigParserBuilder. build()Builds new instance of HOCON ConfigParser.static ConfigParserHoconConfigParserBuilder. buildDefault()Creates new instance of HOCON ConfigParser with default behaviour, i.e. -
Uses of ConfigParser in io.helidon.config.spi
Methods in io.helidon.config.spi that return ConfigParser Modifier and Type Method Description protected ConfigParserAbstractParsableConfigSource.Builder. parser()Returns parser property.protected ConfigParserAbstractParsableConfigSource. parser()Returns source associated parser ornullif unknown.Methods in io.helidon.config.spi that return types with arguments of type ConfigParser Modifier and Type Method Description Optional<ConfigParser>ConfigContext. findParser(String mediaType)Returns the first appropriateConfigParserinstance that supports the specifiedcontent media type.protected Function<Config.Key,ConfigParser>AbstractConfigSource.Builder. parserMapping()Parser mapping function.Methods in io.helidon.config.spi with parameters of type ConfigParser Modifier and Type Method Description BAbstractParsableConfigSource.Builder. parser(ConfigParser parser)Sets aConfigParserinstance to be used to parse configuration content.Method parameters in io.helidon.config.spi with type arguments of type ConfigParser Modifier and Type Method Description BAbstractConfigSource.Builder. parserMapping(Function<Config.Key,ConfigParser> parserMapping)Sets a function mapping key to a parser. -
Uses of ConfigParser in io.helidon.config.yaml
Methods in io.helidon.config.yaml that return ConfigParser Modifier and Type Method Description ConfigParserYamlConfigParserBuilder. build()Builds new instance of YAML ConfigParser.static ConfigParserYamlConfigParserBuilder. buildDefault()Creates new instance of YAML ConfigParser with default behaviour, i.e.
-