public class CalendarSerializer extends ScalarSerializerBase<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 |
_handledType
Constructor and Description |
---|
CalendarSerializer() |
Modifier and Type | Method and Description |
---|---|
JsonNode |
getSchema(SerializerProvider provider,
Type typeHint)
Note: since Jackson 1.9, default implementation claims type is "string"
|
void |
serialize(Calendar value,
JsonGenerator jgen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
serializeWithType
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrow
isUnwrappingSerializer, unwrappingSerializer
public static CalendarSerializer instance
public void serialize(Calendar value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException
JsonSerializer
serialize
in class SerializerBase<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
JsonGenerationException
public JsonNode getSchema(SerializerProvider provider, Type typeHint)
SerializerBase
getSchema
in interface SchemaAware
getSchema
in class ScalarSerializerBase<Calendar>
provider
- The serializer provider.typeHint
- A hint about the type.