public class SqlDateSerializer extends DateTimeSerializerBase<java.sql.Date>
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.JsonSerializer.None
_customFormat, _reusedCustomFormat, _useTimestamp
_handledType
Modifier | Constructor and Description |
---|---|
|
SqlDateSerializer() |
protected |
SqlDateSerializer(java.lang.Boolean useTimestamp,
java.text.DateFormat customFormat) |
Modifier and Type | Method and Description |
---|---|
protected long |
_timestamp(java.sql.Date value) |
void |
serialize(java.sql.Date value,
com.fasterxml.jackson.core.JsonGenerator g,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
SqlDateSerializer |
withFormat(java.lang.Boolean timestamp,
java.text.DateFormat customFormat) |
_acceptJsonFormatVisitor, _asTimestamp, _serializeAsString, acceptJsonFormatVisitor, createContextual, getSchema, isEmpty
serializeWithType
_neitherNull, _nonEmpty, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId
public SqlDateSerializer()
protected SqlDateSerializer(java.lang.Boolean useTimestamp, java.text.DateFormat customFormat)
public SqlDateSerializer withFormat(java.lang.Boolean timestamp, java.text.DateFormat customFormat)
withFormat
in class DateTimeSerializerBase<java.sql.Date>
protected long _timestamp(java.sql.Date value)
_timestamp
in class DateTimeSerializerBase<java.sql.Date>
public void serialize(java.sql.Date value, com.fasterxml.jackson.core.JsonGenerator g, SerializerProvider provider) throws java.io.IOException
JsonSerializer
serialize
in class DateTimeSerializerBase<java.sql.Date>
value
- Value to serialize; can not be null.g
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.java.io.IOException