Uses of Interface
io.helidon.config.ConfigValue
-
Packages that use ConfigValue Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.mp Helidon implementation of microprofile config. -
-
Uses of ConfigValue in io.helidon.config
Methods in io.helidon.config that return ConfigValue Modifier and Type Method Description <T> ConfigValue<T>
Config. as(GenericType<T> genericType)
Typed value as aConfigValue
for a generic type.<T> ConfigValue<T>
Config. as(Class<T> type)
Typed value as aConfigValue
.<T> ConfigValue<T>
Config. as(Function<Config,T> mapper)
Typed value as aConfigValue
created from factory method.<N> ConfigValue<N>
ConfigValue. as(Function<T,N> mapper)
Convert thisConfigValue
to a different type using a mapper function.default ConfigValue<Boolean>
Config. asBoolean()
Boolean typed value.default ConfigValue<Double>
Config. asDouble()
Double typed value.default ConfigValue<Integer>
Config. asInt()
Integer typed value.<T> ConfigValue<List<T>>
Config. asList(Class<T> type)
Returns list of specified type.<T> ConfigValue<List<T>>
Config. asList(Function<Config,T> mapper)
Returns this node as a list converting each list value using the provided mapper.default ConfigValue<Long>
Config. asLong()
Long typed value.ConfigValue<Map<String,String>>
Config. asMap()
Transform all leaf nodes (values) into Map instance.default ConfigValue<Config>
Config. asNode()
Returns existing current config node as aOptional
instance orOptional.empty()
in case ofConfig.Type.MISSING
node.ConfigValue<List<Config>>
Config. asNodeList()
Returns a list of childConfig
nodes if the node isConfig.Type.OBJECT
.default ConfigValue<String>
Config. asString()
String typed value.static <T> ConfigValue<T>
ConfigValues. empty()
Simple empty value that can be used e.g.static <T> ConfigValue<T>
ConfigValues. simpleValue(T value)
Simple value that can be used e.g. -
Uses of ConfigValue in io.helidon.config.mp
Methods in io.helidon.config.mp that return ConfigValue Modifier and Type Method Description <T> ConfigValue<T>
MpConfigProviderResolver.ConfigDelegate. as(GenericType<T> genericType)
Deprecated.<T> ConfigValue<T>
MpConfigProviderResolver.ConfigDelegate. as(Class<T> type)
Deprecated.<T> ConfigValue<T>
MpConfigProviderResolver.ConfigDelegate. as(Function<Config,T> mapper)
Deprecated.<T> ConfigValue<List<T>>
MpConfigProviderResolver.ConfigDelegate. asList(Class<T> type)
Deprecated.<T> ConfigValue<List<T>>
MpConfigProviderResolver.ConfigDelegate. asList(Function<Config,T> mapper)
Deprecated.ConfigValue<Map<String,String>>
MpConfigProviderResolver.ConfigDelegate. asMap()
Deprecated.ConfigValue<List<Config>>
MpConfigProviderResolver.ConfigDelegate. asNodeList()
Deprecated.
-