public class TypeSerializerWrapper extends TypeSerializer
| Modifier and Type | Field and Description |
|---|---|
protected TypeSerializer |
_delegate
Actual TypeSerializer to use
|
protected Object |
_value |
| Constructor and Description |
|---|
TypeSerializerWrapper(TypeSerializer delegate,
Object value) |
| Modifier and Type | Method and Description |
|---|---|
TypeSerializer |
forProperty(BeanProperty prop)
Method called to create contextual version, to be used for
values of given property.
|
String |
getPropertyName()
Name of property that contains type information, if
property-based inclusion is used.
|
TypeIdResolver |
getTypeIdResolver()
Accessor for object that handles conversions between
types and matching type ids.
|
JsonTypeInfo.As |
getTypeInclusion()
Accessor for type information inclusion method
that serializer uses; indicates how type information
is embedded in resulting JSON.
|
void |
writeCustomTypePrefixForArray(Object value,
JsonGenerator jgen,
String typeId) |
void |
writeCustomTypePrefixForObject(Object value,
JsonGenerator jgen,
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(Object value,
JsonGenerator jgen,
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(Object value,
JsonGenerator jgen,
String typeId) |
void |
writeCustomTypeSuffixForObject(Object value,
JsonGenerator jgen,
String typeId) |
void |
writeCustomTypeSuffixForScalar(Object value,
JsonGenerator jgen,
String typeId) |
void |
writeTypePrefixForArray(Object value,
JsonGenerator jgen)
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 |
writeTypePrefixForObject(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 |
writeTypePrefixForScalar(Object value,
JsonGenerator jgen)
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 |
writeTypeSuffixForArray(Object value,
JsonGenerator jgen)
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(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, com.fasterxml.jackson.core.JsonGenerator). |
void |
writeTypeSuffixForScalar(Object value,
JsonGenerator jgen)
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). |
writeTypePrefixForArray, writeTypePrefixForObject, writeTypePrefixForScalarprotected final TypeSerializer _delegate
protected final Object _value
public TypeSerializerWrapper(TypeSerializer delegate, Object value)
public TypeSerializer forProperty(BeanProperty prop)
TypeSerializerCollection or Map
valued properties).forProperty in class TypeSerializerpublic JsonTypeInfo.As getTypeInclusion()
TypeSerializergetTypeInclusion in class TypeSerializerpublic String getPropertyName()
TypeSerializergetPropertyName in class TypeSerializerpublic TypeIdResolver getTypeIdResolver()
TypeSerializergetTypeIdResolver in class TypeSerializerpublic void writeTypePrefixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializerwriteTypePrefixForScalar in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationIOExceptionJsonProcessingExceptionpublic void writeTypePrefixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializerwriteTypePrefixForObject in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationIOExceptionJsonProcessingExceptionpublic void writeTypePrefixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializerwriteTypePrefixForArray in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationIOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
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 TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
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 TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
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 TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeCustomTypePrefixForScalar(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
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 writtenjgen - Generator to use for writing type informationtypeId - Exact type id to useIOExceptionJsonProcessingExceptionpublic void writeCustomTypePrefixForObject(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
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 writtenjgen - Generator to use for writing type informationtypeId - Exact type id to useIOExceptionJsonProcessingExceptionpublic void writeCustomTypePrefixForArray(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
writeCustomTypePrefixForArray in class TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeCustomTypeSuffixForScalar(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
writeCustomTypeSuffixForScalar in class TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeCustomTypeSuffixForObject(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
writeCustomTypeSuffixForObject in class TypeSerializerIOExceptionJsonProcessingExceptionpublic void writeCustomTypeSuffixForArray(Object value, JsonGenerator jgen, String typeId) throws IOException, JsonProcessingException
writeCustomTypeSuffixForArray in class TypeSerializerIOExceptionJsonProcessingExceptionCopyright © 2012 FasterXML. All Rights Reserved.