Uses of Class
io.helidon.common.GenericType
-
Packages that use GenericType Package Description io.helidon.common Common utilities for Helidon projects.io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of GenericType in io.helidon.common
Methods in io.helidon.common that return GenericType Modifier and Type Method Description static <N> GenericType<N>GenericType. create(Type genericType)Constructs a new generic type, using the provided generic type information and deriving the class. -
Uses of GenericType in io.helidon.config
Methods in io.helidon.config with parameters of type GenericType Modifier and Type Method Description <T> Config.BuilderConfig.Builder. addMapper(GenericType<T> type, Function<Config,T> mapper)Register a mapping function for specifiedGenericType.<T> ConfigValue<T>Config. as(GenericType<T> genericType)Typed value as aConfigValuefor a generic type. -
Uses of GenericType in io.helidon.config.spi
Methods in io.helidon.config.spi that return types with arguments of type GenericType Modifier and Type Method Description default Map<GenericType<?>,BiFunction<Config,ConfigMapper,?>>ConfigMapperProvider. genericTypeMappers()Returns a map of mapper functions associated with appropriate target type (GenericType<?>.Methods in io.helidon.config.spi with parameters of type GenericType Modifier and Type Method Description <T> TConfigMapper. map(Config config, GenericType<T> type)Convert the specifiedConfignode into the target type specified byGenericType.<T> TConfigMapper. map(String value, GenericType<T> type, String key)Converts the value to the target generic type.default <T> Optional<BiFunction<Config,ConfigMapper,T>>ConfigMapperProvider. mapper(GenericType<T> type)Mapper for a specific generic type.
-