Class AsArrayTypeSerializer
- java.lang.Object
-
- org.codehaus.jackson.map.TypeSerializer
-
- org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- Direct Known Subclasses:
AsPropertyTypeSerializer
public class AsArrayTypeSerializer extends TypeSerializerBase
Type serializer that will embed type information in an array, as the first element, and actual value as the second element.- Since:
- 1.5
- Author:
- tatu
-
-
Field Summary
-
Fields inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
_idResolver, _property
-
-
Constructor Summary
Constructors Constructor Description AsArrayTypeSerializer(TypeIdResolver idRes, BeanProperty property)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonTypeInfo.AsgetTypeInclusion()Accessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.voidwriteTypePrefixForArray(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).voidwriteTypePrefixForArray(Object value, JsonGenerator jgen, 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 typevoidwriteTypePrefixForObject(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(Object value, JsonGenerator jgen, 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 typevoidwriteTypePrefixForScalar(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).voidwriteTypePrefixForScalar(Object value, JsonGenerator jgen, 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 typevoidwriteTypeSuffixForArray(Object value, JsonGenerator jgen)Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypeSuffixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator).voidwriteTypeSuffixForObject(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).voidwriteTypeSuffixForScalar(Object value, JsonGenerator jgen)Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator).-
Methods inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
getPropertyName, getTypeIdResolver
-
-
-
-
Constructor Detail
-
AsArrayTypeSerializer
public AsArrayTypeSerializer(TypeIdResolver idRes, BeanProperty property)
-
-
Method Detail
-
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.- Specified by:
getTypeInclusionin classTypeSerializerBase
-
writeTypePrefixForObject
public void writeTypePrefixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description 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.- Specified by:
writeTypePrefixForObjectin classTypeSerializer- Parameters:
value- Value that will be serialized, for which type information is to be writtenjgen- Generator to use for writing type information- Throws:
IOExceptionJsonProcessingException
-
writeTypePrefixForObject
public void writeTypePrefixForObject(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
Description 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 classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
writeTypePrefixForArray
public void writeTypePrefixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerMethod 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). This means that context after call must be JSON Array, that is, there must be an open START_ARRAY to write contents in.- Specified by:
writeTypePrefixForArrayin classTypeSerializer- Parameters:
value- Value that will be serialized, for which type information is to be writtenjgen- Generator to use for writing type information- Throws:
IOExceptionJsonProcessingException
-
writeTypePrefixForArray
public void writeTypePrefixForArray(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerAlternative 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- Overrides:
writeTypePrefixForArrayin classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
writeTypePrefixForScalar
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerMethod 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). This means that the context after call can not be that of JSON Object; it may be Array or root context.- Specified by:
writeTypePrefixForScalarin classTypeSerializer- Parameters:
value- Value that will be serialized, for which type information is to be writtenjgen- Generator to use for writing type information- Throws:
IOExceptionJsonProcessingException
-
writeTypePrefixForScalar
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerAlternative 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- Overrides:
writeTypePrefixForScalarin classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
writeTypeSuffixForObject
public void writeTypeSuffixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description 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.- Specified by:
writeTypeSuffixForObjectin classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
writeTypeSuffixForArray
public void writeTypeSuffixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerMethod called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypeSuffixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator). It needs to write closing END_ARRAY marker, and any other decoration that needs to be matched.- Specified by:
writeTypeSuffixForArrayin classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
writeTypeSuffixForScalar
public void writeTypeSuffixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
Description copied from class:TypeSerializerMethod called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator). Actual action to take may depend on various factors, but has to match with actionTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)did (close array or object; or do nothing).- Specified by:
writeTypeSuffixForScalarin classTypeSerializer- Throws:
IOExceptionJsonProcessingException
-
-