com.fasterxml.jackson.databind.ser.std
Class CalendarSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdScalarSerializer<T>
com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase<Calendar>
com.fasterxml.jackson.databind.ser.std.CalendarSerializer
- All Implemented Interfaces:
- SchemaAware, ContextualSerializer
public class CalendarSerializer
- extends DateTimeSerializerBase<Calendar>
Standard serializer for Calendar
.
As with other time/date types, is configurable to produce timestamps
(standard Java 64-bit timestamp) or textual formats (usually ISO-8601).
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
instance
public static CalendarSerializer instance
CalendarSerializer
public CalendarSerializer()
CalendarSerializer
public CalendarSerializer(boolean useTimestamp,
DateFormat customFormat)
withFormat
public CalendarSerializer withFormat(boolean timestamp,
DateFormat customFormat)
- Specified by:
withFormat
in class DateTimeSerializerBase<Calendar>
_timestamp
protected long _timestamp(Calendar value)
- Specified by:
_timestamp
in class DateTimeSerializerBase<Calendar>
serialize
public void serialize(Calendar value,
com.fasterxml.jackson.core.JsonGenerator jgen,
SerializerProvider provider)
throws IOException,
com.fasterxml.jackson.core.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 DateTimeSerializerBase<Calendar>
- 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
com.fasterxml.jackson.core.JsonGenerationException
Copyright © 2012 fasterxml.com. All Rights Reserved.