Uses of Interface
one.microstream.configuration.types.ConfigurationValueMapper
Package | Description |
---|---|
one.microstream.configuration.types |
-
Uses of ConfigurationValueMapper in one.microstream.configuration.types
Classes in one.microstream.configuration.types that implement ConfigurationValueMapper Modifier and Type Class Description static class
ConfigurationValueMapper.Default<T>
Methods in one.microstream.configuration.types that return ConfigurationValueMapper Modifier and Type Method Description static ConfigurationValueMapper<Boolean>
ConfigurationValueMapper. Boolean()
static ConfigurationValueMapper<Byte>
ConfigurationValueMapper. Byte()
static ConfigurationValueMapper<ByteSize>
ConfigurationValueMapper. ByteSize()
static ConfigurationValueMapper<ByteSize>
ConfigurationValueMapper. ByteSize(ByteUnit defaultUnit)
static ConfigurationValueMapper<Double>
ConfigurationValueMapper. Double()
static ConfigurationValueMapper<Duration>
ConfigurationValueMapper. Duration()
static ConfigurationValueMapper<Duration>
ConfigurationValueMapper. Duration(DurationUnit defaultUnit)
static ConfigurationValueMapper<Float>
ConfigurationValueMapper. Float()
<T> ConfigurationValueMapper<T>
ConfigurationValueMapperProvider.Default. get(Class<T> type)
<T> ConfigurationValueMapper<T>
ConfigurationValueMapperProvider. get(Class<T> type)
Gets the value mapper for the specified type, ornull
if none was found.static ConfigurationValueMapper<Integer>
ConfigurationValueMapper. Integer()
static ConfigurationValueMapper<Long>
ConfigurationValueMapper. Long()
static <T> ConfigurationValueMapper<T>
ConfigurationValueMapper. New(Class<T> type, ConfigurationValueMappingFunction<T> mappingFunction)
static ConfigurationValueMapper<Short>
ConfigurationValueMapper. Short()
Methods in one.microstream.configuration.types that return types with arguments of type ConfigurationValueMapper Modifier and Type Method Description Iterator<ConfigurationValueMapper<?>>
ConfigurationValueMapperProvider.Default. iterator()
<T> Optional<ConfigurationValueMapper<T>>
ConfigurationValueMapperProvider.Default. opt(Class<T> type)
<T> Optional<ConfigurationValueMapper<T>>
ConfigurationValueMapperProvider. opt(Class<T> type)
Returns an optional value mapper for the specified type.Methods in one.microstream.configuration.types with parameters of type ConfigurationValueMapper Modifier and Type Method Description <T> ConfigurationValueMapperProvider.Builder
ConfigurationValueMapperProvider.Builder. add(ConfigurationValueMapper<T> mapper)
Adds a value mapper for a certain type.<T> ConfigurationValueMapperProvider.Builder
ConfigurationValueMapperProvider.Builder.Default. add(ConfigurationValueMapper<T> mapper)
Method parameters in one.microstream.configuration.types with type arguments of type ConfigurationValueMapper Modifier and Type Method Description static ConfigurationValueMapperProvider
ConfigurationValueMapperProvider. New(XGettingMap<Class<?>,ConfigurationValueMapper<?>> table)
Pseudo-constructor method to create a newConfigurationValueMapperProvider
.