public class CalendarSerializer extends DateTimeSerializerBase<Calendar>
Calendar
.
As with other time/date types, is configurable to produce timestamps
(standard Java 64-bit timestamp) or textual formats (usually ISO-8601).JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
static CalendarSerializer |
instance |
_customFormat, _useTimestamp
_handledType
Constructor and Description |
---|
CalendarSerializer() |
CalendarSerializer(Boolean useTimestamp,
DateFormat customFormat) |
Modifier and Type | Method and Description |
---|---|
protected long |
_timestamp(Calendar value) |
void |
serialize(Calendar value,
com.fasterxml.jackson.core.JsonGenerator jgen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
CalendarSerializer |
withFormat(Boolean timestamp,
DateFormat customFormat) |
_acceptJsonFormatVisitor, _asTimestamp, acceptJsonFormatVisitor, createContextual, getSchema, isEmpty
serializeWithType
createObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, findPropertyFilter, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isUnwrappingSerializer, replaceDelegatee, unwrappingSerializer, usesObjectId
public static final CalendarSerializer instance
public CalendarSerializer()
public CalendarSerializer(Boolean useTimestamp, DateFormat customFormat)
public CalendarSerializer withFormat(Boolean timestamp, DateFormat customFormat)
withFormat
in class DateTimeSerializerBase<Calendar>
protected long _timestamp(Calendar value)
_timestamp
in class DateTimeSerializerBase<Calendar>
public void serialize(Calendar value, com.fasterxml.jackson.core.JsonGenerator jgen, SerializerProvider provider) throws IOException
JsonSerializer
serialize
in class DateTimeSerializerBase<Calendar>
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.IOException
Copyright © 2014-2015 FasterXML. All Rights Reserved.