Uses of Class
org.codehaus.jackson.map.TypeDeserializer
-
Packages that use TypeDeserializer Package Description org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding.org.codehaus.jackson.map.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.org.codehaus.jackson.map.deser.std Contains public standard implementations of abstraction that Jackson uses.org.codehaus.jackson.map.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.org.codehaus.jackson.map.jsontype.impl Package that contains standard implementations forTypeResolverBuilderandTypeIdResolver.org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(org.codehaus.jackson.map.Module).org.codehaus.jackson.xc Package that contains XML Compatibility functionality for Jackson, such as handlers for JAXB annotations -
-
Uses of TypeDeserializer in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return TypeDeserializer Modifier and Type Method Description TypeDeserializerObjectMapper.DefaultTypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes, BeanProperty property)TypeDeserializerDeserializerFactory. findTypeDeserializer(DeserializationConfig config, JavaType baseType, BeanProperty property)Method called to find and create a type information deserializer for given base type, if one is needed.Methods in org.codehaus.jackson.map with parameters of type TypeDeserializer Modifier and Type Method Description java.lang.ObjectJsonDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)Deserialization called when type being deserialized is defined to contain additional type identifier, to allow for correctly instantiating correct subtype.JsonDeserializer<?>Deserializers.Base. findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, DeserializerProvider provider, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified array type.JsonDeserializer<?>Deserializers.Base. findCollectionDeserializer(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specifiedCollection(List, Set etc) type.JsonDeserializer<?>Deserializers.Base. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Collection-like" type (one that acts likeCollectionbut does not implement it).JsonDeserializer<?>Deserializers.Base. findMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate deserializer for specifiedMaptype.JsonDeserializer<?>Deserializers.Base. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Map-like" type (one that acts likeMapbut does not implement it). -
Uses of TypeDeserializer in org.codehaus.jackson.map.deser
Fields in org.codehaus.jackson.map.deser declared as TypeDeserializer Modifier and Type Field Description protected TypeDeserializerSettableBeanProperty. _valueTypeDeserializerIf value will contain type information (to support polymorphic handling), this is the type deserializer used to handle type resolution.Methods in org.codehaus.jackson.map.deser that return TypeDeserializer Modifier and Type Method Description TypeDeserializerBasicDeserializerFactory. findPropertyContentTypeDeserializer(DeserializationConfig config, JavaType containerType, AnnotatedMember propertyEntity, BeanProperty property)Method called to find and create a type information deserializer for values of given container (list, array, map) property, if one is needed.TypeDeserializerBasicDeserializerFactory. findPropertyTypeDeserializer(DeserializationConfig config, JavaType baseType, AnnotatedMember annotated, BeanProperty property)Method called to create a type information deserializer for values of given non-container property, if one is needed.TypeDeserializerBasicDeserializerFactory. findTypeDeserializer(DeserializationConfig config, JavaType baseType, BeanProperty property)TypeDeserializerSettableBeanProperty. getValueTypeDeserializer()Constructors in org.codehaus.jackson.map.deser with parameters of type TypeDeserializer Constructor Description ArrayDeserializer(ArrayType arrayType, JsonDeserializer<java.lang.Object> elemDeser, TypeDeserializer elemTypeDeser)Deprecated.CollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, java.lang.reflect.Constructor<java.util.Collection<java.lang.Object>> defCtor)Deprecated.Since 1.9, use variant that takes ValueInstantiatorCollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator)Deprecated.FieldProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field)MapDeserializer(JavaType mapType, java.lang.reflect.Constructor<java.util.Map<java.lang.Object,java.lang.Object>> defCtor, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)Deprecated.Since 1.9, use variant that takes ValueInstantiatorMapDeserializer(JavaType mapType, ValueInstantiator valueInstantiator, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)Deprecated.MethodProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)SettableBeanProperty(java.lang.String propName, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations)SetterlessProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)WrappedDeserializer(TypeDeserializer typeDeser, JsonDeserializer<java.lang.Object> deser) -
Uses of TypeDeserializer in org.codehaus.jackson.map.deser.impl
Constructors in org.codehaus.jackson.map.deser.impl with parameters of type TypeDeserializer Constructor Description CreatorProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, java.lang.Object injectableValueId) -
Uses of TypeDeserializer in org.codehaus.jackson.map.deser.std
Fields in org.codehaus.jackson.map.deser.std declared as TypeDeserializer Modifier and Type Field Description protected TypeDeserializerObjectArrayDeserializer. _elementTypeDeserializerIf element instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializerCollectionDeserializer. _valueTypeDeserializerIf element instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializerMapDeserializer. _valueTypeDeserializerIf value instances have polymorphic type information, this is the type deserializer that can handle itMethods in org.codehaus.jackson.map.deser.std with parameters of type TypeDeserializer Modifier and Type Method Description java.lang.ObjectCollectionDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectEnumMapDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectEnumSetDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectMapDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.Object[]ObjectArrayDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectPrimitiveArrayDeserializers. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.BooleanStdDeserializer.BooleanDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectStdDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)Base implementation that does not assume specific type inclusion mechanism.java.lang.DoubleStdDeserializer.DoubleDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.IntegerStdDeserializer.IntegerDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectStdDeserializer.NumberDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)As mentioned in class Javadoc, there is additional complexity in handling potentially mixed type information here.java.lang.ObjectStdScalarDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectStringCollectionDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.StringStringDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)java.lang.ObjectUntypedObjectDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)Constructors in org.codehaus.jackson.map.deser.std with parameters of type TypeDeserializer Constructor Description CollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, java.lang.reflect.Constructor<java.util.Collection<java.lang.Object>> defCtor)Deprecated.Since 1.9, use variant that takes ValueInstantiatorCollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator)MapDeserializer(JavaType mapType, java.lang.reflect.Constructor<java.util.Map<java.lang.Object,java.lang.Object>> defCtor, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)Deprecated.Since 1.9, use variant that takes ValueInstantiatorMapDeserializer(JavaType mapType, ValueInstantiator valueInstantiator, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)ObjectArrayDeserializer(ArrayType arrayType, JsonDeserializer<java.lang.Object> elemDeser, TypeDeserializer elemTypeDeser) -
Uses of TypeDeserializer in org.codehaus.jackson.map.jsontype
Methods in org.codehaus.jackson.map.jsontype that return TypeDeserializer Modifier and Type Method Description TypeDeserializerTypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes, BeanProperty property)Method for building type deserializer based on current configuration of this builder. -
Uses of TypeDeserializer in org.codehaus.jackson.map.jsontype.impl
Subclasses of TypeDeserializer in org.codehaus.jackson.map.jsontype.impl Modifier and Type Class Description classAsArrayTypeDeserializerType deserializer used withJsonTypeInfo.As.WRAPPER_ARRAYinclusion mechanism.classAsExternalTypeDeserializerType deserializer used withJsonTypeInfo.As.EXTERNAL_PROPERTYinclusion mechanism.classAsPropertyTypeDeserializerType deserializer used withJsonTypeInfo.As.PROPERTYinclusion mechanism.classAsWrapperTypeDeserializerType deserializer used withJsonTypeInfo.As.WRAPPER_OBJECTinclusion mechanism.classTypeDeserializerBaseMethods in org.codehaus.jackson.map.jsontype.impl that return TypeDeserializer Modifier and Type Method Description TypeDeserializerStdTypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes, BeanProperty property) -
Uses of TypeDeserializer in org.codehaus.jackson.map.module
-
Uses of TypeDeserializer in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc with parameters of type TypeDeserializer Modifier and Type Method Description java.lang.ObjectXmlAdapterJsonDeserializer. deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
-