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
public abstract class ScalarSerializerBase<T> extends SerializerBase<T>
-
-
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
Constructors Modifier Constructor Description protected
ScalarSerializerBase(java.lang.Class<?> t, boolean dummy)
Alternate constructor that is (alas!) needed to work around kinks of generic type handlingprotected
ScalarSerializerBase(java.lang.Class<T> t)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonNode
getSchema(SerializerProvider provider, java.lang.reflect.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 Detail
-
ScalarSerializerBase
protected ScalarSerializerBase(java.lang.Class<T> t)
-
ScalarSerializerBase
protected ScalarSerializerBase(java.lang.Class<?> t, boolean dummy)
Alternate constructor that is (alas!) needed to work around kinks of generic type handling
-
-
Method Detail
-
serializeWithType
public void serializeWithType(T value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws java.io.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:
java.io.IOException
JsonGenerationException
-
getSchema
public JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint) throws JsonMappingException
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
-
-