Uses of Interface
com.fasterxml.jackson.databind.ser.ContextualSerializer
Packages that use ContextualSerializer
Package
Description
Contains extended support for "external" packages: things that
may or may not be present in runtime environment, but that are
commonly enough used so that explicit support can be added.
Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
-
Uses of ContextualSerializer in com.fasterxml.jackson.databind.ext
Classes in com.fasterxml.jackson.databind.ext that implement ContextualSerializer -
Uses of ContextualSerializer in com.fasterxml.jackson.databind.ser
Classes in com.fasterxml.jackson.databind.ser that implement ContextualSerializerModifier and TypeClassDescriptionclass
Serializer class that can serialize Java objects that map to JSON Object output. -
Uses of ContextualSerializer in com.fasterxml.jackson.databind.ser.impl
Classes in com.fasterxml.jackson.databind.ser.impl that implement ContextualSerializerModifier and TypeClassDescriptionclass
Specialized POJO serializer that differs fromBeanSerializer
in that instead of producing a JSON Object it will output a JSON Array, omitting field names, and serializing values in specified serialization order.final class
This is an optimized serializer for Lists that can be efficiently traversed by index (as opposed to others, such asLinkedList
that cannot}.final class
Efficient implement for serializingList
s that contains Strings and are random-accessible.class
class
class
Standard serializer used forString[]
values.class
Efficient implement for serializingCollection
s that contain Strings.final class
Simple serializer that will call configured type serializer, passing in configured data serializer, and exposing it all as a simple serializer.class
-
Uses of ContextualSerializer in com.fasterxml.jackson.databind.ser.std
Classes in com.fasterxml.jackson.databind.ser.std that implement ContextualSerializerModifier and TypeClassDescriptionclass
Intermediate base class for serializers used for various Java arrays.class
Base class for serializers that will output contents as JSON arrays; typically serializers used forCollection
and array types.class
class
Base class both for the standard bean serializer, and couple of variants that only differ in small details.final class
Serializer used for primitive boolean, as well as java.util.Boolean wrapper type.class
Standard serializer forCalendar
.class
Fallback serializer for cases where Collection is not known to be of type for which more specializer serializer exists (such as index-accessible List).class
For efficiency, we will serialize Dates as longs, instead of potentially more readable Strings.class
class
Standard serializer used forEnum
types.class
class
Simple serializer forInetAddress
.class
class
Serializer class that can serialize Object that have aJsonValue
annotation to indicate that serialization should be done by calling the method annotated, and serializing result it returns.class
Standard serializer implementation for serializing {link java.util.Map} types.class
As a fallback, we may need to use this serializer for other types ofNumber
s: both custom types and "big" numbers likeBigInteger
andBigDecimal
.static class
Shared base class for actual primitive/wrapper number serializers.static class
This is the special serializer for regularDouble
s (and primitive doubles)static class
static class
This is the special serializer for regularInteger
s (and primitive ints)static class
Similar toNumberSerializers.IntegerSerializer
, but will not cast to Integer: instead, cast is toNumber
, and conversion is by callingNumber.intValue()
.static class
static class
class
Generic serializer for Object arrays (Object[]
).class
Base implementation for values ofReferenceType
.class
Compared to regularDate
serialization, we do use String representation here.class
StaticListSerializerBase<T extends Collection<?>>
Intermediate base class for Lists, Collections and Arrays that contain static (non-dynamic) value types.static class
static class
static class
static class
static class
static class
protected static class
Intermediate base class used for cases where we may add type information (excludes boolean/int/double arrays).class
Serializer implementation where given Java type is first converted to an intermediate "delegate type" (using a configuredConverter
, and then this delegate value is serialized by Jackson.class
SpecializedJsonSerializer
to outputUUID
s.