public static class CoreXMLSerializers.XMLGregorianCalendarSerializer extends StdSerializer<XMLGregorianCalendar> implements ContextualSerializer
JsonSerializer.None
_handledType
Modifier | Constructor and Description |
---|---|
|
CoreXMLSerializers.XMLGregorianCalendarSerializer() |
protected |
CoreXMLSerializers.XMLGregorianCalendarSerializer(JsonSerializer<?> del) |
Modifier and Type | Method and Description |
---|---|
protected Calendar |
_convert(XMLGregorianCalendar input) |
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonSerializer<?> |
createContextual(SerializerProvider prov,
BeanProperty property)
Method called to see if a different (or differently configured) serializer
is needed to serialize values of specified property.
|
JsonSerializer<?> |
getDelegatee()
Accessor that can be used to determine if this serializer uses
another serializer for actual serialization, by delegating
calls.
|
boolean |
isEmpty(SerializerProvider provider,
XMLGregorianCalendar value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
boolean |
isEmpty(XMLGregorianCalendar value)
Deprecated.
|
void |
serialize(XMLGregorianCalendar 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.
|
void |
serializeWithType(XMLGregorianCalendar value,
com.fasterxml.jackson.core.JsonGenerator gen,
SerializerProvider provider,
TypeSerializer typeSer)
Method that can be called to ask implementation to serialize
values of type this serializer handles, using specified type serializer
for embedding necessary type information.
|
createObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow
isUnwrappingSerializer, replaceDelegatee, unwrappingSerializer, usesObjectId
public CoreXMLSerializers.XMLGregorianCalendarSerializer()
protected CoreXMLSerializers.XMLGregorianCalendarSerializer(JsonSerializer<?> del)
public JsonSerializer<?> getDelegatee()
JsonSerializer
getDelegatee
in class JsonSerializer<XMLGregorianCalendar>
@Deprecated public boolean isEmpty(XMLGregorianCalendar value)
JsonSerializer
Default implementation will consider only null values to be empty.
isEmpty
in class JsonSerializer<XMLGregorianCalendar>
public boolean isEmpty(SerializerProvider provider, XMLGregorianCalendar value)
JsonSerializer
Default implementation will consider only null values to be empty.
NOTE: replaces JsonSerializer.isEmpty(Object)
, deprecated in 2.5
isEmpty
in class JsonSerializer<XMLGregorianCalendar>
public void serialize(XMLGregorianCalendar value, com.fasterxml.jackson.core.JsonGenerator jgen, SerializerProvider provider) throws IOException
JsonSerializer
serialize
in class StdSerializer<XMLGregorianCalendar>
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
public void serializeWithType(XMLGregorianCalendar value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider, TypeSerializer typeSer) throws IOException
JsonSerializer
Default implementation will throw UnsupportedOperationException
to indicate that proper type handling needs to be implemented.
For simple datatypes written as a single scalar value (JSON String, Number, Boolean), implementation would look like:
// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, gen); serialize(value, gen, provider); typeSer.writeTypeSuffixForScalar(value, gen);and implementations for type serialized as JSON Arrays or Objects would differ slightly, as
START-ARRAY>/END-ARRAY
and
START-OBJECT>/END-OBJECT
pairs
need to be properly handled with respect to serializing of contents.
serializeWithType
in class JsonSerializer<XMLGregorianCalendar>
value
- Value to serialize; can not be null.gen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.typeSer
- Type serializer to use for including type informationIOException
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializer
acceptJsonFormatVisitor
in interface JsonFormatVisitable
acceptJsonFormatVisitor
in class StdSerializer<XMLGregorianCalendar>
typeHint
- Type of element (entity like property) being visitedJsonMappingException
public JsonSerializer<?> createContextual(SerializerProvider prov, BeanProperty property) throws JsonMappingException
ContextualSerializer
createContextual
in interface ContextualSerializer
prov
- Serializer provider to use for accessing config, other serializersproperty
- Method or field that represents the property
(and is used to access value to serialize).
Should be available; but there may be cases where caller can not provide it and
null is passed instead (in which case impls usually pass 'this' serializer as is)JsonMappingException
protected Calendar _convert(XMLGregorianCalendar input)
Copyright © 2014-2015 FasterXML. All Rights Reserved.