Uses of Package
tools.jackson.databind.ser.jdk
Packages that use tools.jackson.databind.ser.jdk
Package
Description
Package that contains handlers specific to SQL datatypes.
Contains implementation classes of serialization part of
data binding.
-
Classes in tools.jackson.databind.ser.jdk used by tools.jackson.databind.ext.sql
-
Classes in tools.jackson.databind.ser.jdk used by tools.jackson.databind.serClassDescriptionStandard serializer implementation for serializing {link java.util.Map} types.
-
Classes in tools.jackson.databind.ser.jdk used by tools.jackson.databind.ser.jdkClassDescriptionFallback serializer for cases where Collection is not known to be of type for which more specializer serializer exists (such as index-accessible List).Standard serializer used for
Enumtypes.This is an optimized serializer for Lists that can be efficiently traversed by index (as opposed to others, such asLinkedListthat cannot}.Efficient implement for serializingLists that contains Strings and are random-accessible.Standard serializer forCalendar.For efficiency, we will serialize Dates as longs, instead of potentially more readable Strings.Alternative serializer for arrays of primitive doubles, using "packed binary" representation ("binary vector") instead of JSON array.Alternative serializer for arrays of primitive floats, using "packed binary" representation ("binary vector") instead of JSON array.Intermediate base class used for cases where we may add type information (excludes boolean/int/double arrays).Specialized instance to use for Enum keys, as per [databind#1322]Serializer used to serialize Map.Entry as POJOs: that is, as if introspected as POJOs so that there's intermediate "key" and "value" properties.Standard serializer implementation for serializing {link java.util.Map} types.As a fallback, we may need to use this serializer for other types ofNumbers: both custom types and "big" numbers likeBigIntegerandBigDecimal.Base class for actual primitive/wrapper value serializers.Similar toNumberSerializers.IntegerSerializer, but will not cast to Integer: instead, cast is toNumber, and conversion is by callingNumber.intValue().Generic serializer for Object arrays (Object[]).Intermediate base class for Lists, Collections and Arrays that contain static (non-dynamic) value types.Standard serializer used forString[]values.Efficient implement for serializingCollections that contain Strings.This is the special serializer for regularStrings.