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 protectedScalarSerializerBase(Class<?> t, boolean dummy)Alternate constructor that is (alas!) needed to work around kinks of generic type handlingprotectedScalarSerializerBase(Class<T> t)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonNodegetSchema(SerializerProvider provider, Type typeHint)Note: since Jackson 1.9, default implementation claims type is "string"voidserializeWithType(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
-
-
-
-
Method Detail
-
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:
serializeWithTypein 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:
IOExceptionJsonGenerationException
-
getSchema
public JsonNode getSchema(SerializerProvider provider, Type typeHint) throws JsonMappingException
Description copied from class:SerializerBaseNote: since Jackson 1.9, default implementation claims type is "string"- Specified by:
getSchemain interfaceSchemaAware- Overrides:
getSchemain classSerializerBase<T>- Parameters:
provider- The serializer provider.typeHint- A hint about the type.- Returns:
- Json-schema for this serializer.
- Throws:
JsonMappingException
-
-