public class AsPropertyTypeSerializer extends AsArrayTypeSerializer
JsonTypeInfo.As.WRAPPER_ARRAY always works) as a fallback.| Modifier and Type | Field and Description |
|---|---|
protected java.lang.String |
_typePropertyName |
_idResolver, _property| Constructor and Description |
|---|
AsPropertyTypeSerializer(TypeIdResolver idRes,
BeanProperty property,
java.lang.String propName) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getPropertyName()
Name of property that contains type information, if
property-based inclusion is used.
|
JsonTypeInfo.As |
getTypeInclusion()
Accessor for type information inclusion method
that serializer uses; indicates how type information
is embedded in resulting JSON.
|
void |
writeTypePrefixForObject(java.lang.Object value,
JsonGenerator jgen)
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,
JsonGenerator jgen,
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 |
writeTypeSuffixForObject(java.lang.Object value,
JsonGenerator jgen)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator). |
writeTypePrefixForArray, writeTypePrefixForArray, writeTypePrefixForScalar, writeTypePrefixForScalar, writeTypeSuffixForArray, writeTypeSuffixForScalargetTypeIdResolverpublic AsPropertyTypeSerializer(TypeIdResolver idRes, BeanProperty property, java.lang.String propName)
public java.lang.String getPropertyName()
TypeSerializergetPropertyName in class TypeSerializerBasepublic JsonTypeInfo.As getTypeInclusion()
TypeSerializergetTypeInclusion in class AsArrayTypeSerializerpublic void writeTypePrefixForObject(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForObject in class AsArrayTypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForObject(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForObject in class AsArrayTypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForObject(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerTypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator).
It needs to write closing END_OBJECT marker, and any other decoration
that needs to be matched.writeTypeSuffixForObject in class AsArrayTypeSerializerjava.io.IOExceptionJsonProcessingException