Uses of Interface
io.fluxzero.common.serialization.Converter
Packages that use Converter
Package
Description
-
Uses of Converter in io.fluxzero.common.search
Subinterfaces of Converter in io.fluxzero.common.searchModifier and TypeInterfaceDescriptioninterfaceInverter<T>Interface responsible for converting a domain object into aSerializedDocumentfor indexing, and vice versa—deserializing abyte[]representation into the original object type.Classes in io.fluxzero.common.search that implement ConverterModifier and TypeClassDescriptionclassImplementation ofInverterthat uses Jackson to invert an Object into aSerializedDocumentand back into aJsonNode. -
Uses of Converter in io.fluxzero.common.serialization
Classes in io.fluxzero.common.serialization that implement ConverterModifier and TypeClassDescriptionclassAbstractConverter<I,O> An abstract base class for converting data of typeIto typeO. -
Uses of Converter in io.fluxzero.sdk.common.serialization
Constructors in io.fluxzero.sdk.common.serialization with parameters of type ConverterModifierConstructorDescriptionprotectedAbstractSerializer(Collection<?> casterCandidates, Converter<byte[], I> converter, String format) Constructs a new serializer with the provided caster candidates and converter. -
Uses of Converter in io.fluxzero.sdk.common.serialization.casting
Methods in io.fluxzero.sdk.common.serialization.casting with parameters of type ConverterModifier and TypeMethodDescriptionprotected static <BEFORE,INTERNAL>
CasterChain<SerializedObject<BEFORE>, SerializedObject<?>> DefaultCasterChain.create(Collection<?> casterCandidates, Converter<BEFORE, INTERNAL> converter, boolean down) static <BEFORE,INTERNAL>
CasterChain<SerializedObject<BEFORE>, SerializedObject<?>> DefaultCasterChain.createUpcaster(Collection<?> casterCandidates, Converter<BEFORE, INTERNAL> converter) Constructors in io.fluxzero.sdk.common.serialization.casting with parameters of type ConverterModifierConstructorDescriptionConvertingSerializedObject(SerializedObject<I> source, Converter<I, O> converter) Constructs aConvertingSerializedObjectwith deferred conversion.