public class AtomicReferenceSerializer extends StdSerializer<AtomicReference<?>> implements ContextualSerializer
JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
protected JsonInclude.Include |
_contentInclusion
Further guidance on serialization-inclusion (or not), regarding
contained value (if any).
|
protected PropertySerializerMap |
_dynamicSerializers
If element type can not be statically determined, mapping from
runtime type to serializer is handled using this object
|
protected BeanProperty |
_property |
protected JavaType |
_referredType
Declared type parameter for Optional.
|
protected NameTransformer |
_unwrapper
To support unwrapped values of dynamic types, will need this:
|
protected JsonSerializer<Object> |
_valueSerializer |
protected TypeSerializer |
_valueTypeSerializer
Type serializer used for values, if any.
|
_handledType
Modifier | Constructor and Description |
---|---|
protected |
AtomicReferenceSerializer(AtomicReferenceSerializer base,
BeanProperty property,
TypeSerializer vts,
JsonSerializer<?> valueSer,
NameTransformer unwrapper,
JsonInclude.Include contentIncl) |
|
AtomicReferenceSerializer(ReferenceType fullType,
boolean staticTyping,
TypeSerializer vts,
JsonSerializer<Object> ser) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
_useStatic(SerializerProvider provider,
BeanProperty property,
JavaType referredType) |
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonSerializer<?> |
createContextual(SerializerProvider provider,
BeanProperty property)
Method called to see if a different (or differently configured) serializer
is needed to serialize values of specified property.
|
boolean |
isEmpty(SerializerProvider provider,
AtomicReference<?> value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
boolean |
isUnwrappingSerializer()
Accessor for checking whether this serializer is an
"unwrapping" serializer; this is necessary to know since
it may also require caller to suppress writing of the
leading property name.
|
void |
serialize(AtomicReference<?> ref,
JsonGenerator g,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(AtomicReference<?> ref,
JsonGenerator g,
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.
|
JsonSerializer<AtomicReference<?>> |
unwrappingSerializer(NameTransformer transformer)
Method that will return serializer instance that produces
"unwrapped" serialization, if applicable for type being
serialized (which is the case for some serializers
that produce JSON Objects as output).
|
protected AtomicReferenceSerializer |
withResolved(BeanProperty prop,
TypeSerializer vts,
JsonSerializer<?> valueSer,
NameTransformer unwrapper,
JsonInclude.Include contentIncl) |
createObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, properties, replaceDelegatee, usesObjectId, withFilterId
protected final JavaType _referredType
protected final BeanProperty _property
protected final TypeSerializer _valueTypeSerializer
protected final JsonSerializer<Object> _valueSerializer
protected final NameTransformer _unwrapper
protected final JsonInclude.Include _contentInclusion
protected transient PropertySerializerMap _dynamicSerializers
public AtomicReferenceSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> ser)
protected AtomicReferenceSerializer(AtomicReferenceSerializer base, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, JsonInclude.Include contentIncl)
public JsonSerializer<AtomicReference<?>> unwrappingSerializer(NameTransformer transformer)
JsonSerializer
Default implementation just returns serializer as-is, indicating that no unwrapped variant exists
unwrappingSerializer
in class JsonSerializer<AtomicReference<?>>
transformer
- Name transformation to use to convert between names
of unwrapper propertiesprotected AtomicReferenceSerializer withResolved(BeanProperty prop, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, JsonInclude.Include contentIncl)
public JsonSerializer<?> createContextual(SerializerProvider provider, BeanProperty property) throws JsonMappingException
ContextualSerializer
createContextual
in interface ContextualSerializer
provider
- 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 boolean _useStatic(SerializerProvider provider, BeanProperty property, JavaType referredType)
public boolean isEmpty(SerializerProvider provider, AtomicReference<?> 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<AtomicReference<?>>
public boolean isUnwrappingSerializer()
JsonSerializer
isUnwrappingSerializer
in class JsonSerializer<AtomicReference<?>>
public void serialize(AtomicReference<?> ref, JsonGenerator g, SerializerProvider provider) throws IOException
JsonSerializer
serialize
in class StdSerializer<AtomicReference<?>>
ref
- Value to serialize; can not be null.g
- 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(AtomicReference<?> ref, JsonGenerator g, 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<AtomicReference<?>>
ref
- Value to serialize; can not be null.g
- 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<AtomicReference<?>>
typeHint
- Type of element (entity like property) being visitedJsonMappingException
Copyright © 2008–2016 FasterXML. All rights reserved.