class |
ArraySerializerBase<T> |
Intermediate base class for serializers used for various
Java arrays.
|
class |
AsArraySerializerBase<T> |
Base class for serializers that will output contents as JSON
arrays; typically serializers used for Collection
and array types.
|
class |
AtomicReferenceSerializer |
|
class |
BeanSerializerBase |
Base class both for the standard bean serializer, and couple
of variants that only differ in small details.
|
class |
BooleanSerializer |
Serializer used for primitive boolean, as well as java.util.Boolean
wrapper type.
|
class |
CalendarSerializer |
Standard serializer for Calendar .
|
class |
CollectionSerializer |
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 |
DateSerializer |
For efficiency, we will serialize Dates as longs, instead of
potentially more readable Strings.
|
class |
DateTimeSerializerBase<T> |
|
class |
EnumSerializer |
Standard serializer used for Enum types.
|
class |
EnumSetSerializer |
|
class |
InetAddressSerializer |
Simple serializer for InetAddress .
|
class |
IterableSerializer |
|
class |
JsonValueSerializer |
Serializer class that can serialize Object that have a
JsonValue annotation to
indicate that serialization should be done by calling the method
annotated, and serializing result it returns.
|
class |
MapSerializer |
Standard serializer implementation for serializing {link java.util.Map} types.
|
class |
NumberSerializer |
As a fallback, we may need to use this serializer for other
types of Number s: both custom types and "big" numbers
like BigInteger and BigDecimal .
|
static class |
NumberSerializers.Base<T> |
Shared base class for actual primitive/wrapper number serializers.
|
static class |
NumberSerializers.DoubleSerializer |
This is the special serializer for regular Double s (and
primitive doubles)
|
static class |
NumberSerializers.FloatSerializer |
|
static class |
NumberSerializers.IntegerSerializer |
This is the special serializer for regular Integer s
(and primitive ints)
|
static class |
NumberSerializers.IntLikeSerializer |
|
static class |
NumberSerializers.LongSerializer |
|
static class |
NumberSerializers.ShortSerializer |
|
class |
ObjectArraySerializer |
Generic serializer for Object arrays (Object[] ).
|
class |
ReferenceTypeSerializer<T> |
|
class |
SqlDateSerializer |
Compared to regular Date serialization, we do use String
representation here.
|
class |
StaticListSerializerBase<T extends java.util.Collection<?>> |
Intermediate base class for Lists, Collections and Arrays
that contain static (non-dynamic) value types.
|
static class |
StdArraySerializers.BooleanArraySerializer |
|
static class |
StdArraySerializers.DoubleArraySerializer |
|
static class |
StdArraySerializers.FloatArraySerializer |
|
static class |
StdArraySerializers.IntArraySerializer |
|
static class |
StdArraySerializers.LongArraySerializer |
|
static class |
StdArraySerializers.ShortArraySerializer |
|
protected static class |
StdArraySerializers.TypedPrimitiveArraySerializer<T> |
Intermediate base class used for cases where we may add
type information (excludes boolean/int/double arrays).
|
class |
StdDelegatingSerializer |
Serializer implementation where given Java type is first converted
to an intermediate "delegate type" (using a configured
Converter , and then this delegate value is serialized by Jackson.
|
class |
UUIDSerializer |
|