Class AsPropertyTypeDeserializer
java.lang.Object
org.codehaus.jackson.map.TypeDeserializer
org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
org.codehaus.jackson.map.jsontype.impl.AsArrayTypeDeserializer
org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
Type deserializer used with
JsonTypeInfo.As.PROPERTY
inclusion mechanism.
Uses regular form (additional key/value entry before actual data)
when typed object is expressed as JSON Object; otherwise behaves similar to how
JsonTypeInfo.As.WRAPPER_ARRAY works.
Latter is used if JSON representation is polymorphic- Since:
- 1.5
- Author:
- tatu
-
Field Summary
FieldsFields inherited from class TypeDeserializerBase
_baseType, _defaultImpl, _defaultImplDeserializer, _deserializers, _idResolver, _property -
Constructor Summary
ConstructorsConstructorDescriptionAsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, BeanProperty property, Class<?> defaultImpl, String typePropName) AsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, BeanProperty property, String typePropName) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionprotected ObjectHelper method used to check if given parser might be pointing to a "natural" value, and one that would be acceptable as the result value (compatible with declared base type)protected ObjectMethod called to let this type deserializer handle deserialization of "typed" object, when value itself may have been serialized using any kind of JSON value (Array, Object, scalar).This is the trickiest thing to handle, since property we are looking for may be anywhere...Name of property that contains type information, if property-based inclusion is used.Accessor for type information inclusion method that deserializer uses; indicates how type information is (expected to be) embedded in JSON input.Methods inherited from class AsArrayTypeDeserializer
_locateTypeId, deserializeTypedFromArray, deserializeTypedFromScalarMethods inherited from class TypeDeserializerBase
_findDefaultImplDeserializer, _findDeserializer, baseTypeName, getDefaultImpl, getTypeIdResolver, toString
-
Field Details
-
_typePropertyName
-
-
Constructor Details
-
AsPropertyTypeDeserializer
@Deprecated public AsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, BeanProperty property, String typePropName) Deprecated. -
AsPropertyTypeDeserializer
public AsPropertyTypeDeserializer(JavaType bt, TypeIdResolver idRes, BeanProperty property, Class<?> defaultImpl, String typePropName)
-
-
Method Details
-
getTypeInclusion
Description copied from class:TypeDeserializerAccessor for type information inclusion method that deserializer uses; indicates how type information is (expected to be) embedded in JSON input.- Overrides:
getTypeInclusionin classAsArrayTypeDeserializer
-
getPropertyName
Description copied from class:TypeDeserializerName of property that contains type information, if property-based inclusion is used.- Overrides:
getPropertyNamein classTypeDeserializerBase
-
deserializeTypedFromObject
public Object deserializeTypedFromObject(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException This is the trickiest thing to handle, since property we are looking for may be anywhere...- Overrides:
deserializeTypedFromObjectin classAsArrayTypeDeserializer- Throws:
IOExceptionJsonProcessingException
-
_deserializeTypedUsingDefaultImpl
protected Object _deserializeTypedUsingDefaultImpl(JsonParser jp, DeserializationContext ctxt, TokenBuffer tb) throws IOException, JsonProcessingException - Throws:
IOExceptionJsonProcessingException
-
deserializeTypedFromAny
public Object deserializeTypedFromAny(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException Description copied from class:TypeDeserializerMethod called to let this type deserializer handle deserialization of "typed" object, when value itself may have been serialized using any kind of JSON value (Array, Object, scalar). Should only be called if JSON serialization is polymorphic (not Java type); for example when using JSON node representation, or "untyped" Java object (which may be Map, Collection, wrapper/primitive etc).- Overrides:
deserializeTypedFromAnyin classAsArrayTypeDeserializer- Throws:
IOExceptionJsonProcessingException
-
_deserializeIfNatural
protected Object _deserializeIfNatural(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException Helper method used to check if given parser might be pointing to a "natural" value, and one that would be acceptable as the result value (compatible with declared base type)- Throws:
IOExceptionJsonProcessingException
-