Uses of Class
io.helidon.config.MissingValueException
Packages that use MissingValueException
Package
Description
Provides interfaces and classes for loading and working with immutable, tree-structured
configuration data.
Configuration SPI that defines the behavior developers can implement to extend the config system.
-
Uses of MissingValueException in io.helidon.config
Methods in io.helidon.config that return MissingValueExceptionModifier and TypeMethodDescriptionstatic MissingValueException
MissingValueException.create
(Config.Key key) Create new missing value exception.Methods in io.helidon.config that return types with arguments of type MissingValueExceptionModifier and TypeMethodDescriptionstatic Supplier
<MissingValueException> MissingValueException.createSupplier
(Config.Key key) Create new missing value exception supplier.Methods in io.helidon.config that throw MissingValueExceptionModifier and TypeMethodDescriptionConfig.asMap()
Transform all leaf nodes (values) into Map instance.static ClasspathConfigSource
Initializes config source instance from configuration properties.Initializes config filter instance from configuration properties.static DirectoryConfigSource
Initializes config source instance from configuration properties.static FileConfigSource
Initializes config source instance from configuration properties.Initializes polling strategy instance from configuration properties.static UrlConfigSource
Initializes config source instance from configuration properties.default T
ConfigValue.get()
Typed value of the representedConfig
node. -
Uses of MissingValueException in io.helidon.config.spi
Methods in io.helidon.config.spi that throw MissingValueExceptionModifier and TypeMethodDescription<T> T
ConfigMapper.map
(Config config, GenericType<T> type) Convert the specifiedConfig
node into the target type specified byGenericType
.<T> T
Converts the specifiedConfig
node to the target type.<T> T
ConfigMapper.map
(String value, GenericType<T> type, String key) Converts the value to the target generic type.<T> T
Converts the value to the target type.