| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind.ext | 
 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. 
 | 
| com.fasterxml.jackson.databind.ser | 
 Contains implementation classes of serialization part of 
 data binding. 
 | 
| com.fasterxml.jackson.databind.ser.impl | 
 Contains implementation classes of serialization part of 
 data binding. 
 | 
| com.fasterxml.jackson.databind.ser.std | 
| Class and Description | 
|---|
| StdSerializer
 Base class used by all standard serializers, and can also
 be used for custom serializers (in fact, this is the recommended
 base class to use). 
 | 
| Class and Description | 
|---|
| BeanSerializerBase
 Base class both for the standard bean serializer, and couple
 of variants that only differ in small details. 
 | 
| MapSerializer
 Standard serializer implementation for serializing {link java.util.Map} types. 
 | 
| StdSerializer
 Base class used by all standard serializers, and can also
 be used for custom serializers (in fact, this is the recommended
 base class to use). 
 | 
| Class and Description | 
|---|
| ArraySerializerBase
 Intermediate base class for serializers used for various
 Java arrays. 
 | 
| AsArraySerializerBase
 Base class for serializers that will output contents as JSON
 arrays; typically serializers used for  
Collection
 and array types. | 
| BeanSerializerBase
 Base class both for the standard bean serializer, and couple
 of variants that only differ in small details. 
 | 
| StaticListSerializerBase
 Intermediate base class for Lists, Collections and Arrays
 that contain static (non-dynamic) value types. 
 | 
| StdSerializer
 Base class used by all standard serializers, and can also
 be used for custom serializers (in fact, this is the recommended
 base class to use). 
 | 
| Class and Description | 
|---|
| ArraySerializerBase
 Intermediate base class for serializers used for various
 Java arrays. 
 | 
| AsArraySerializerBase
 Base class for serializers that will output contents as JSON
 arrays; typically serializers used for  
Collection
 and array types. | 
| BeanSerializerBase
 Base class both for the standard bean serializer, and couple
 of variants that only differ in small details. 
 | 
| CalendarSerializer
 Standard serializer for  
Calendar. | 
| 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). 
 | 
| DateSerializer
 For efficiency, we will serialize Dates as longs, instead of
 potentially more readable Strings. 
 | 
| DateTimeSerializerBase | 
| EnumMapSerializer
 Specialized serializer for  
EnumMaps. | 
| EnumSerializer
 Standard serializer used for  
Enum types. | 
| EnumSetSerializer | 
| InetAddressSerializer
 Simple serializer for  
InetAddress. | 
| IterableSerializer | 
| 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. | 
| MapSerializer
 Standard serializer implementation for serializing {link java.util.Map} types. 
 | 
| NonTypedScalarSerializerBase
 Intermediate base class for limited number of scalar types
 that should never include type information. 
 | 
| NullSerializer
 This is a simple dummy serializer that will just output literal
 JSON null value whenever serialization is requested. 
 | 
| NumberSerializers.NumberSerializer
 As a fallback, we may need to use this serializer for other
 types of  
Numbers (custom types). | 
| ObjectArraySerializer
 Generic serializer for Object arrays ( 
Object[]). | 
| SerializableSerializer
 Generic handler for types that implement  
JsonSerializable. | 
| StdArraySerializers.FloatArraySerializer | 
| StdArraySerializers.LongArraySerializer | 
| StdArraySerializers.ShortArraySerializer | 
| StdArraySerializers.TypedPrimitiveArraySerializer
 Intermediate base class used for cases where we may add
 type information (excludes boolean/int/double arrays). 
 | 
| 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. | 
| StdScalarSerializer | 
| StdSerializer
 Base class used by all standard serializers, and can also
 be used for custom serializers (in fact, this is the recommended
 base class to use). 
 | 
| TimeZoneSerializer | 
| ToStringSerializer
 Simple general purpose serializer, useful for any
 type for which  
Object.toString() returns the desired JSON
 value. | 
Copyright © 2012-2013 FasterXML. All Rights Reserved.