Package org.codehaus.jackson.map.ser.std
Class ScalarSerializerBase<T>
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<T>
org.codehaus.jackson.map.ser.std.SerializerBase<T>
org.codehaus.jackson.map.ser.std.ScalarSerializerBase<T>
- All Implemented Interfaces:
SchemaAware
- Direct Known Subclasses:
CalendarSerializer
,DateSerializer
,EnumSerializer
,InetAddressSerializer
,NonTypedScalarSerializerBase
,StdJdkSerializers.AtomicBooleanSerializer
,StdJdkSerializers.AtomicIntegerSerializer
,StdJdkSerializers.AtomicLongSerializer
,StdJdkSerializers.ClassSerializer
,StdJdkSerializers.FileSerializer
,StdSerializers.FloatSerializer
,StdSerializers.IntLikeSerializer
,StdSerializers.LongSerializer
,StdSerializers.NumberSerializer
,StdSerializers.SqlDateSerializer
,StdSerializers.SqlTimeSerializer
,TimeZoneSerializer
-
Nested Class Summary
Nested classes/interfaces inherited from class org.codehaus.jackson.map.JsonSerializer
JsonSerializer.None
-
Field Summary
Fields inherited from class org.codehaus.jackson.map.ser.std.SerializerBase
_handledType
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ScalarSerializerBase
(Class<?> t, boolean dummy) Alternate constructor that is (alas!) needed to work around kinks of generic type handlingprotected
-
Method Summary
Modifier and TypeMethodDescriptiongetSchema
(SerializerProvider provider, Type typeHint) Note: since Jackson 1.9, default implementation claims type is "string"void
serializeWithType
(T value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) Default implementation will write type prefix, call regular serialization method (since assumption is that value itself does not need JSON Array or Object start/end markers), and then write type suffix.Methods inherited from class org.codehaus.jackson.map.ser.std.SerializerBase
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, serialize, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrow
Methods inherited from class org.codehaus.jackson.map.JsonSerializer
isUnwrappingSerializer, unwrappingSerializer
-
Constructor Details
-
ScalarSerializerBase
-
ScalarSerializerBase
Alternate constructor that is (alas!) needed to work around kinks of generic type handling
-
-
Method Details
-
serializeWithType
public void serializeWithType(T value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException, JsonGenerationException Default implementation will write type prefix, call regular serialization method (since assumption is that value itself does not need JSON Array or Object start/end markers), and then write type suffix. This should work for most cases; some sub-classes may want to change this behavior.- Overrides:
serializeWithType
in classJsonSerializer<T>
- Parameters:
value
- Value to serialize; can not be null.jgen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for serializing Objects value contains, if any.typeSer
- Type serializer to use for including type information- Throws:
IOException
JsonGenerationException
-
getSchema
Description copied from class:SerializerBase
Note: since Jackson 1.9, default implementation claims type is "string"- Specified by:
getSchema
in interfaceSchemaAware
- Overrides:
getSchema
in classSerializerBase<T>
- Parameters:
provider
- The serializer provider.typeHint
- A hint about the type.- Returns:
- Json-schema for this serializer.
- Throws:
JsonMappingException
-