| Package | Description |
|---|---|
| org.codehaus.jackson.map.ser |
Contains implementation classes of serialization part of
data binding.
|
| org.codehaus.jackson.map.ser.std |
| Modifier and Type | Class and Description |
|---|---|
static class |
StdSerializers.BooleanSerializer
Serializer used for primitive boolean, as well as java.util.Boolean
wrapper type.
|
static class |
StdSerializers.DoubleSerializer
This is the special serializer for regular
Doubles
(and primitive doubles)
Since this is one of "native" types, no type information is ever
included on serialization (unlike for most scalar types as of 1.5) |
static class |
StdSerializers.IntegerSerializer
This is the special serializer for regular
Integers
(and primitive ints)
Since this is one of "native" types, no type information is ever
included on serialization (unlike for most scalar types as of 1.5) |
static class |
StdSerializers.StringSerializer
Deprecated.
Since 1.9, use
StringSerializer instead |
| Modifier and Type | Class and Description |
|---|---|
class |
StringSerializer
This is the special serializer for regular
Strings. |