public abstract class BeanSerializerBase extends StdSerializer<java.lang.Object> implements ContextualSerializer, ResolvableSerializer, JsonFormatVisitable, SchemaAware
JsonSerializer.None
Constructor and Description |
---|
BeanSerializerBase(BeanSerializerBase src,
BeanPropertyWriter[] properties,
BeanPropertyWriter[] filteredProperties) |
Modifier and Type | Method and Description |
---|---|
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.
|
JsonNode |
getSchema(SerializerProvider provider,
java.lang.reflect.Type typeHint)
Deprecated.
|
java.util.Iterator<PropertyWriter> |
properties()
Accessor for iterating over logical properties that the type
handled by this serializer has, from serialization perspective.
|
void |
resolve(SerializerProvider provider)
We need to implement
ResolvableSerializer to be able to
properly handle cyclic type references. |
abstract void |
serialize(java.lang.Object bean,
JsonGenerator gen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(java.lang.Object bean,
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.
|
boolean |
usesObjectId()
Method that can be called to see whether this serializer instance
will use Object Id to handle cyclic references.
|
abstract BeanSerializerBase |
withFilterId(java.lang.Object filterId)
Mutant factory used for creating a new instance with different
filter id (used with
JsonFilter annotation) |
abstract BeanSerializerBase |
withObjectIdWriter(ObjectIdWriter objectIdWriter)
Mutant factory used for creating a new instance with different
ObjectIdWriter . |
getSchema, handledType, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, replaceDelegatee, unwrappingSerializer
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getSchema
public BeanSerializerBase(BeanSerializerBase src, BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties)
public abstract BeanSerializerBase withObjectIdWriter(ObjectIdWriter objectIdWriter)
ObjectIdWriter
.public abstract BeanSerializerBase withFilterId(java.lang.Object filterId)
JsonFilter
annotation)withFilterId
in class JsonSerializer<java.lang.Object>
public void resolve(SerializerProvider provider) throws JsonMappingException
ResolvableSerializer
to be able to
properly handle cyclic type references.resolve
in interface ResolvableSerializer
provider
- Provider that has constructed serializer this method
is called on.JsonMappingException
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 cannot provide it and
null is passed instead (in which case impls usually pass 'this' serializer as is)JsonMappingException
public java.util.Iterator<PropertyWriter> properties()
JsonSerializer
BeanPropertyWriter
.
Of standard Jackson serializers, only BeanSerializer
exposes properties.properties
in class JsonSerializer<java.lang.Object>
public boolean usesObjectId()
JsonSerializer
usesObjectId
in class JsonSerializer<java.lang.Object>
public abstract void serialize(java.lang.Object bean, JsonGenerator gen, SerializerProvider provider) throws java.io.IOException
JsonSerializer
serialize
in class StdSerializer<java.lang.Object>
bean
- 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.java.io.IOException
public void serializeWithType(java.lang.Object bean, JsonGenerator gen, SerializerProvider provider, TypeSerializer typeSer) throws java.io.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<java.lang.Object>
bean
- 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 informationjava.io.IOException
@Deprecated public JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint) throws JsonMappingException
StdSerializer
getSchema
in interface SchemaAware
getSchema
in class StdSerializer<java.lang.Object>
provider
- The serializer provider.typeHint
- A hint about the type.JsonMappingException
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializer
acceptJsonFormatVisitor
in interface JsonFormatVisitable
acceptJsonFormatVisitor
in class StdSerializer<java.lang.Object>
typeHint
- Type of element (entity like property) being visitedJsonMappingException
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"