public class AsWrapperTypeSerializer extends TypeSerializerBase
JsonTypeInfo.As.WRAPPER_ARRAY mechanism as fallback: that is,
just use a wrapping array with type information as the first element
and value as second._idResolver, _property| Constructor and Description |
|---|
AsWrapperTypeSerializer(TypeIdResolver idRes,
BeanProperty property) |
| Modifier and Type | Method and Description |
|---|---|
protected java.lang.String |
_validTypeId(java.lang.String typeId)
Helper method used to ensure that intended type id is output as something that is valid:
currently only used to ensure that `null` output is converted to an empty String.
|
AsWrapperTypeSerializer |
forProperty(BeanProperty prop)
Method called to create contextual version, to be used for
values of given property.
|
com.fasterxml.jackson.annotation.JsonTypeInfo.As |
getTypeInclusion()
Accessor for type information inclusion method
that serializer uses; indicates how type information
is embedded in resulting JSON.
|
void |
writeCustomTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId) |
void |
writeCustomTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
Method called to write initial part of type information for given
value, when it will be output as JSON Object value (not as JSON
Array or scalar),
using specified custom type id instead of calling
TypeIdResolver. |
void |
writeCustomTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
Method called to write initial part of type information for given
value, when it will be output as scalar JSON value (not as JSON
Object or Array),
using specified custom type id instead of calling
TypeIdResolver. |
void |
writeCustomTypeSuffixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId) |
void |
writeCustomTypeSuffixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId) |
void |
writeCustomTypeSuffixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId) |
void |
writeTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called to write initial part of type information for given
value, when it will be output as JSON Array value (not as JSON
Object or scalar).
|
void |
writeTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
Alternative version of the prefix-for-array method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
|
void |
writeTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called to write initial part of type information for given
value, when it will be output as JSON Object value (not as JSON
Array or scalar).
|
void |
writeTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
Alternative version of the prefix-for-object method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
|
void |
writeTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called to write initial part of type information for given
value, when it will be output as scalar JSON value (not as JSON
Object or Array).
|
void |
writeTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
Alternative version of the prefix-for-scalar method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
|
void |
writeTypeSuffixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypeSuffixForScalar(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator). |
void |
writeTypeSuffixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypePrefixForObject(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator). |
void |
writeTypeSuffixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypePrefixForScalar(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator). |
getPropertyName, getTypeIdResolver, handleMissingId, idFromValue, idFromValueAndTypepublic AsWrapperTypeSerializer(TypeIdResolver idRes, BeanProperty property)
public AsWrapperTypeSerializer forProperty(BeanProperty prop)
TypeSerializerCollection or Map
valued properties).forProperty in class TypeSerializerpublic com.fasterxml.jackson.annotation.JsonTypeInfo.As getTypeInclusion()
TypeSerializergetTypeInclusion in class TypeSerializerBasepublic void writeTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerwriteTypePrefixForObject in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writteng - Generator to use for writing type informationjava.io.IOExceptionpublic void writeTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
throws java.io.IOException
TypeSerializerwriteTypePrefixForObject in class TypeSerializerjava.io.IOExceptionpublic void writeTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerwriteTypePrefixForArray in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writteng - Generator to use for writing type informationjava.io.IOExceptionpublic void writeTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
throws java.io.IOException
TypeSerializerwriteTypePrefixForArray in class TypeSerializerjava.io.IOExceptionpublic void writeTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerwriteTypePrefixForScalar in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writteng - Generator to use for writing type informationjava.io.IOExceptionpublic void writeTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.Class<?> type)
throws java.io.IOException
TypeSerializerwriteTypePrefixForScalar in class TypeSerializerjava.io.IOExceptionpublic void writeTypeSuffixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerTypeSerializer.writeTypePrefixForObject(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator).
It needs to write closing END_OBJECT marker, and any other decoration
that needs to be matched.writeTypeSuffixForObject in class TypeSerializerjava.io.IOExceptionpublic void writeTypeSuffixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerTypeSerializer.writeTypeSuffixForScalar(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator).
It needs to write closing END_ARRAY marker, and any other decoration
that needs to be matched.writeTypeSuffixForArray in class TypeSerializerjava.io.IOExceptionpublic void writeTypeSuffixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g)
throws java.io.IOException
TypeSerializerTypeSerializer.writeTypePrefixForScalar(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator).
Actual action to take may depend on various factors, but has to match with
action TypeSerializer.writeTypePrefixForScalar(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator) did (close array or object; or do nothing).writeTypeSuffixForScalar in class TypeSerializerjava.io.IOExceptionpublic void writeCustomTypePrefixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
TypeSerializerTypeIdResolver.
This means that context after call must be JSON Object, meaning that
caller can then proceed to output field entries.writeCustomTypePrefixForObject in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writteng - Generator to use for writing type informationtypeId - Exact type id to usejava.io.IOExceptionpublic void writeCustomTypePrefixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
writeCustomTypePrefixForArray in class TypeSerializerjava.io.IOExceptionpublic void writeCustomTypePrefixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
TypeSerializerTypeIdResolver.
This means that the context after call can not be that of JSON Object;
it may be Array or root context.writeCustomTypePrefixForScalar in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writteng - Generator to use for writing type informationtypeId - Exact type id to usejava.io.IOExceptionpublic void writeCustomTypeSuffixForObject(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
writeCustomTypeSuffixForObject in class TypeSerializerjava.io.IOExceptionpublic void writeCustomTypeSuffixForArray(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
writeCustomTypeSuffixForArray in class TypeSerializerjava.io.IOExceptionpublic void writeCustomTypeSuffixForScalar(java.lang.Object value,
com.fasterxml.jackson.core.JsonGenerator g,
java.lang.String typeId)
throws java.io.IOException
writeCustomTypeSuffixForScalar in class TypeSerializerjava.io.IOExceptionprotected java.lang.String _validTypeId(java.lang.String typeId)