|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.codehaus.jackson.map.TypeSerializer
org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
public class AsExternalTypeSerializer
Type serializer that preferably embeds type information as an "external"
type property; embedded in enclosing JSON object.
Note that this serializer should only be used when value is being output
at JSON Object context; otherwise it can not work reliably, and will have
to revert operation similar to AsPropertyTypeSerializer
.
Note that implementation of serialization is bit cumbersome as we must serialized external type id AFTER object; this because callback only occurs after field name has been written.
Field Summary | |
---|---|
protected String |
_typePropertyName
|
Fields inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase |
---|
_idResolver, _property |
Constructor Summary | |
---|---|
AsExternalTypeSerializer(TypeIdResolver idRes,
BeanProperty property,
String propName)
|
Method Summary | |
---|---|
protected void |
_writePrefix(Object value,
JsonGenerator jgen)
|
protected void |
_writePrefix(Object value,
JsonGenerator jgen,
Class<?> type)
|
protected void |
_writeSuffix(Object value,
JsonGenerator jgen)
|
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 |
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 |
writeTypePrefixForArray(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 type |
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 |
writeTypePrefixForObject(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 type |
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 |
writeTypePrefixForScalar(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 type |
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, org.codehaus.jackson.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, org.codehaus.jackson.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, org.codehaus.jackson.JsonGenerator) . |
Methods inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase |
---|
getTypeIdResolver |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final String _typePropertyName
Constructor Detail |
---|
public AsExternalTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName)
Method Detail |
---|
public String getPropertyName()
TypeSerializer
getPropertyName
in class TypeSerializerBase
public JsonTypeInfo.As getTypeInclusion()
TypeSerializer
getTypeInclusion
in class TypeSerializerBase
public void writeTypePrefixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForObject
in class TypeSerializer
value
- Value that will be serialized, for which type information is
to be writtenjgen
- Generator to use for writing type information
IOException
JsonProcessingException
public void writeTypePrefixForObject(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForObject
in class TypeSerializer
IOException
JsonProcessingException
public void writeTypePrefixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForArray
in class TypeSerializer
value
- Value that will be serialized, for which type information is
to be writtenjgen
- Generator to use for writing type information
IOException
JsonProcessingException
public void writeTypePrefixForArray(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForArray
in class TypeSerializer
IOException
JsonProcessingException
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForScalar
in class TypeSerializer
value
- Value that will be serialized, for which type information is
to be writtenjgen
- Generator to use for writing type information
IOException
JsonProcessingException
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
TypeSerializer
writeTypePrefixForScalar
in class TypeSerializer
IOException
JsonProcessingException
public void writeTypeSuffixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
TypeSerializer.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 TypeSerializer
IOException
JsonProcessingException
public void writeTypeSuffixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
TypeSerializer.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.
writeTypeSuffixForArray
in class TypeSerializer
IOException
JsonProcessingException
public void writeTypeSuffixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
TypeSerializer
TypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
.
Actual action to take may depend on various factors, but has to match with
action TypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
did (close array or object; or do nothing).
writeTypeSuffixForScalar
in class TypeSerializer
IOException
JsonProcessingException
protected final void _writePrefix(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
IOException
JsonProcessingException
protected final void _writePrefix(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException
IOException
JsonProcessingException
protected final void _writeSuffix(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException
IOException
JsonProcessingException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |