Uses of Interface
com.soklet.converter.ValueConverter
Packages that use ValueConverter
Package
Description
Utilities which handle converting objects from one type to another.
-
Uses of ValueConverter in com.soklet.converter
Classes in com.soklet.converter that implement ValueConverterModifier and TypeClassDescriptionclass
Convenience superclass which provides default implementations ofValueConverter
methods.class
Convenience superclass which provides default implementations ofValueConverter
methods that convert fromString
to other types.Methods in com.soklet.converter that return types with arguments of type ValueConverterModifier and TypeMethodDescriptionstatic Set
<ValueConverter<?, ?>> ValueConverters.defaultValueConverters()
Vends the system default set ofValueConverter
instances.<F,
T> Optional <ValueConverter<F, T>> ValueConverterRegistry.get
(TypeReference<F> fromTypeReference, TypeReference<T> toTypeReference) Obtains aValueConverter
that matches the 'from' and 'to' type references specified.Obtain aValueConverter
that matches the 'from' and 'to' types specified.Constructor parameters in com.soklet.converter with type arguments of type ValueConverterModifierConstructorDescriptionValueConverterRegistry
(Set<ValueConverter<?, ?>> customValueConverters) Creates a registry with a sensible default set of converters as specified byValueConverters.defaultValueConverters()
, optionally supplemented with custom converters.