Class AsPropertyTypeSerializer
- java.lang.Object
-
- org.codehaus.jackson.map.TypeSerializer
-
- org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
public class AsPropertyTypeSerializer extends AsArrayTypeSerializer
Type serializer that preferably embeds type information as an additional JSON Object property, if possible (when resulting serialization would use JSON Object). If this is not possible (for JSON Arrays, scalars), uses a JSON Array wrapper (similar to howJsonTypeInfo.As.WRAPPER_ARRAYalways works) as a fallback.- Since:
- 1.5
- Author:
- tatus
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String_typePropertyName-
Fields inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
_idResolver, _property
-
-
Constructor Summary
Constructors Constructor Description AsPropertyTypeSerializer(TypeIdResolver idRes, BeanProperty property, java.lang.String propName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPropertyName()Name of property that contains type information, if property-based inclusion is used.JsonTypeInfo.AsgetTypeInclusion()Accessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.voidwriteTypePrefixForObject(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).voidwriteTypePrefixForObject(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 typevoidwriteTypeSuffixForObject(java.lang.Object value, JsonGenerator jgen)Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator).-
Methods inherited from class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
writeTypePrefixForArray, writeTypePrefixForArray, writeTypePrefixForScalar, writeTypePrefixForScalar, writeTypeSuffixForArray, writeTypeSuffixForScalar
-
Methods inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
getTypeIdResolver
-
-
-
-
Constructor Detail
-
AsPropertyTypeSerializer
public AsPropertyTypeSerializer(TypeIdResolver idRes, BeanProperty property, java.lang.String propName)
-
-
Method Detail
-
getPropertyName
public java.lang.String getPropertyName()
Description copied from class:TypeSerializerName of property that contains type information, if property-based inclusion is used.- Overrides:
getPropertyNamein classTypeSerializerBase
-
getTypeInclusion
public JsonTypeInfo.As getTypeInclusion()
Description copied from class:TypeSerializerAccessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.- Overrides:
getTypeInclusionin classAsArrayTypeSerializer
-
writeTypePrefixForObject
public void writeTypePrefixForObject(java.lang.Object value, JsonGenerator jgen) throws java.io.IOException, JsonProcessingExceptionDescription copied from class:TypeSerializerMethod 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). This means that context after call must be JSON Object, meaning that caller can then proceed to output field entries.- Overrides:
writeTypePrefixForObjectin classAsArrayTypeSerializer- Parameters:
value- Value that will be serialized, for which type information is to be writtenjgen- Generator to use for writing type information- Throws:
java.io.IOExceptionJsonProcessingException
-
writeTypePrefixForObject
public void writeTypePrefixForObject(java.lang.Object value, JsonGenerator jgen, java.lang.Class<?> type) throws java.io.IOException, JsonProcessingExceptionDescription copied from class:TypeSerializerAlternative 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- Overrides:
writeTypePrefixForObjectin classAsArrayTypeSerializer- Throws:
java.io.IOExceptionJsonProcessingException
-
writeTypeSuffixForObject
public void writeTypeSuffixForObject(java.lang.Object value, JsonGenerator jgen) throws java.io.IOException, JsonProcessingExceptionDescription copied from class:TypeSerializerMethod called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.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.- Overrides:
writeTypeSuffixForObjectin classAsArrayTypeSerializer- Throws:
java.io.IOExceptionJsonProcessingException
-
-