|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ScalarSerializerBase | |
|---|---|
| org.codehaus.jackson.map.ser | Contains implementation classes of serialization part of data binding. |
| org.codehaus.jackson.map.ser.impl | Contains implementation classes of serialization part of data binding. |
| Uses of ScalarSerializerBase in org.codehaus.jackson.map.ser |
|---|
| Subclasses of ScalarSerializerBase in org.codehaus.jackson.map.ser | |
|---|---|
class |
EnumSerializer
Standard serializer used for Enum types. |
static class |
JdkSerializers.AtomicBooleanSerializer
|
static class |
JdkSerializers.AtomicIntegerSerializer
|
static class |
JdkSerializers.AtomicLongSerializer
|
static class |
JdkSerializers.ClassSerializer
Also: default bean access will not do much good with Class.class. |
static class |
JdkSerializers.FileSerializer
For now, File objects get serialized by just outputting absolute (but not canonical) name as String value |
static class |
StdSerializers.BooleanSerializer
Serializer used for primitive boolean, as well as java.util.Boolean wrapper type. |
static class |
StdSerializers.CalendarSerializer
For time values we should use timestamp, since that is about the only thing that can be reliably converted between date-based objects and json. |
static class |
StdSerializers.DoubleSerializer
This is the special serializer for regular Doubles
(and primitive doubles) |
static class |
StdSerializers.FloatSerializer
|
static class |
StdSerializers.IntegerSerializer
This is the special serializer for regular Integers
(and primitive ints) |
static class |
StdSerializers.IntLikeSerializer
Similar to StdSerializers.IntegerSerializer, but will not cast to Integer:
instead, cast is to Number, and conversion is
by calling Number.intValue(). |
static class |
StdSerializers.LongSerializer
|
protected static class |
StdSerializers.NonTypedScalarSerializer<T>
Intermediate base class for limited number of scalar types that should never include type information. |
static class |
StdSerializers.NumberSerializer
As a fallback, we may need to use this serializer for other types of Numbers (custom types). |
static class |
StdSerializers.SqlDateSerializer
Compared to regular StdSerializers.UtilDateSerializer, we do use String
representation here. |
static class |
StdSerializers.SqlTimeSerializer
|
static class |
StdSerializers.StringSerializer
This is the special serializer for regular Strings. |
static class |
StdSerializers.UtilDateSerializer
For efficiency, we will serialize Dates as longs, instead of potentially more readable Strings. |
| Uses of ScalarSerializerBase in org.codehaus.jackson.map.ser.impl |
|---|
| Subclasses of ScalarSerializerBase in org.codehaus.jackson.map.ser.impl | |
|---|---|
class |
InetAddressSerializer
Simple serializer for InetAddress. |
class |
TimeZoneSerializer
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||