SchemaAwareStdSerializers.CalendarSerializerpublic class CalendarSerializer extends ScalarSerializerBase<java.util.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 | Description |
|---|---|---|
static CalendarSerializer |
instance |
_handledType| Constructor | Description |
|---|---|
CalendarSerializer() |
| Modifier and Type | Method | Description |
|---|---|---|
JsonNode |
getSchema(SerializerProvider provider,
java.lang.reflect.Type typeHint) |
Note: since Jackson 1.9, default implementation claims type is "string"
|
void |
serialize(java.util.Calendar value,
JsonGenerator jgen,
SerializerProvider provider) |
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
isUnwrappingSerializer, unwrappingSerializerclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitserializeWithTypecreateObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrowpublic static CalendarSerializer instance
public void serialize(java.util.Calendar value,
JsonGenerator jgen,
SerializerProvider provider)
throws java.io.IOException,
JsonGenerationException
JsonSerializerserialize in class SerializerBase<java.util.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.java.io.IOExceptionJsonGenerationExceptionpublic JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint)
SerializerBasegetSchema in interface SchemaAwaregetSchema in class ScalarSerializerBase<java.util.Calendar>provider - The serializer provider.typeHint - A hint about the type.