com.fasterxml.jackson.databind.ser.std
Class SqlDateSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdScalarSerializer<Date>
com.fasterxml.jackson.databind.ser.std.SqlDateSerializer
- All Implemented Interfaces:
- JsonFormatVisitable, SchemaAware
public class SqlDateSerializer
- extends StdScalarSerializer<Date>
Compared to regular Date
serialization, we do use String
representation here. Why? Basically to truncate of time part, since
that should not be used by plain SQL date.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SqlDateSerializer
public SqlDateSerializer()
serialize
public void serialize(Date value,
JsonGenerator jgen,
SerializerProvider provider)
throws IOException,
JsonGenerationException
- Description copied from class:
JsonSerializer
- Method that can be called to ask implementation to serialize
values of type this serializer handles.
- Specified by:
serialize
in class StdSerializer<Date>
- 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.
- Throws:
IOException
JsonGenerationException
getSchema
public JsonNode getSchema(SerializerProvider provider,
Type typeHint)
- Description copied from class:
StdSerializer
- Default implementation simply claims type is "string"; usually
overriden by custom serializers.
- Specified by:
getSchema
in interface SchemaAware
- Overrides:
getSchema
in class StdScalarSerializer<Date>
- Parameters:
provider
- The serializer provider.typeHint
- A hint about the type.
- Returns:
- Json-schema for this serializer.
acceptJsonFormatVisitor
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
- Description copied from class:
StdSerializer
- Default implementation specifies no format. This behavior is usually
overriden by custom serializers.
- Specified by:
acceptJsonFormatVisitor
in interface JsonFormatVisitable
- Overrides:
acceptJsonFormatVisitor
in class StdScalarSerializer<Date>
typeHint
- Type of element (entity like property) being visited
Copyright © 2012 FasterXML. All Rights Reserved.