Uses of Class
org.codehaus.jackson.map.JsonDeserializer
-
Packages that use JsonDeserializer 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
org.codehaus.jackson.map.annotate Annotations that directly depend on Mapper classes (not just Jackson core) and are used for configuring Data Mapping functionality.org.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.ext Contains extended support for "external" packages: things that may or may not be present in runtime environment, but that are commonly enough used so that explicit support can be added.org.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations.org.codehaus.jackson.map.jsontype.impl Package that contains standard implementations forTypeResolverBuilder
andTypeIdResolver
.org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extensionModule
s (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 JsonDeserializer in org.codehaus.jackson.map
Subclasses of JsonDeserializer in org.codehaus.jackson.map Modifier and Type Class Description static class
JsonDeserializer.None
This marker class is only to be used with annotations, to indicate that no deserializer is configured.Fields in org.codehaus.jackson.map declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<T>
MappingIterator. _deserializer
Fields in org.codehaus.jackson.map with type parameters of type JsonDeserializer Modifier and Type Field Description protected ConcurrentHashMap<JavaType,JsonDeserializer<Object>>
ObjectMapper. _rootDeserializers
We will use a separate main-level Map for keeping track of root-level deserializers.protected ConcurrentHashMap<JavaType,JsonDeserializer<Object>>
ObjectReader. _rootDeserializers
Root-level cached deserializersMethods in org.codehaus.jackson.map that return JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>
ObjectMapper. _findRootDeserializer(DeserializationConfig cfg, JavaType valueType)
Method called to locate deserializer for the passed root-level value.protected JsonDeserializer<Object>
ObjectReader. _findRootDeserializer(DeserializationConfig cfg, JavaType valueType)
Method called to locate deserializer for the passed root-level value.abstract JsonDeserializer<?>
DeserializerFactory. createArrayDeserializer(DeserializationConfig config, DeserializerProvider p, ArrayType type, BeanProperty property)
Method called to create (or, for completely immutable deserializers, reuse) a deserializer that can convert JSON content into values of specified Java type.abstract JsonDeserializer<Object>
DeserializerFactory. createBeanDeserializer(DeserializationConfig config, DeserializerProvider p, JavaType type, BeanProperty property)
Method called to create (or, for completely immutable deserializers, reuse) a deserializer that can convert JSON content into values of specified Java "bean" (POJO) type.abstract JsonDeserializer<?>
DeserializerFactory. createCollectionDeserializer(DeserializationConfig config, DeserializerProvider p, CollectionType type, BeanProperty property)
abstract JsonDeserializer<?>
DeserializerFactory. createCollectionLikeDeserializer(DeserializationConfig config, DeserializerProvider p, CollectionLikeType type, BeanProperty property)
JsonDeserializer<T>
ContextualDeserializer. createContextual(DeserializationConfig config, BeanProperty property)
Method called to see if a different (or differently configured) deserializer is needed to deserialize values of specified property.abstract JsonDeserializer<?>
DeserializerFactory. createEnumDeserializer(DeserializationConfig config, DeserializerProvider p, JavaType type, BeanProperty property)
abstract JsonDeserializer<?>
DeserializerFactory. createMapDeserializer(DeserializationConfig config, DeserializerProvider p, MapType type, BeanProperty property)
abstract JsonDeserializer<?>
DeserializerFactory. createMapLikeDeserializer(DeserializationConfig config, DeserializerProvider p, MapLikeType type, BeanProperty property)
abstract JsonDeserializer<?>
DeserializerFactory. createTreeDeserializer(DeserializationConfig config, DeserializerProvider p, JavaType type, BeanProperty property)
Method called to create and return a deserializer that can construct JsonNode(s) from JSON content.JsonDeserializer<Object>
DeserializationConfig. deserializerInstance(Annotated annotated, Class<? extends JsonDeserializer<?>> deserClass)
abstract JsonDeserializer<?>
HandlerInstantiator. deserializerInstance(DeserializationConfig config, Annotated annotated, Class<? extends JsonDeserializer<?>> deserClass)
Method called to get an instance of deserializer of specified type.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. findBeanDeserializer(JavaType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property)
JsonDeserializer<?>
Deserializers. findBeanDeserializer(JavaType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property)
Method called to locate deserializer for specified value type which does not belong to any other category (not an Enum, Collection, Map, Array or tree node)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 likeCollection
but does not implement it).JsonDeserializer<?>
Deserializers.Base. findEnumDeserializer(Class<?> type, DeserializationConfig config, BeanDescription beanDesc, BeanProperty property)
JsonDeserializer<?>
Deserializers. findEnumDeserializer(Class<?> type, DeserializationConfig config, BeanDescription beanDesc, BeanProperty property)
Method called to locate deserializer for specifiedEnum
type.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 specifiedMap
type.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 likeMap
but does not implement it).JsonDeserializer<?>
Deserializers.Base. findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanProperty property)
JsonDeserializer<?>
Deserializers. findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanProperty property)
Method called to locate deserializer for specified JSON tree node type.abstract JsonDeserializer<Object>
DeserializerProvider. findTypedValueDeserializer(DeserializationConfig config, JavaType type, BeanProperty property)
Method called to locate deserializer for given type, as well as matching type deserializer (if one is needed); and if type deserializer is needed, construct a "wrapped" deserializer that can extract and use type information for calling actual deserializer.abstract JsonDeserializer<Object>
DeserializerProvider. findValueDeserializer(DeserializationConfig config, JavaType propertyType, BeanProperty property)
Method called to get hold of a deserializer for a value of given type; or if no such deserializer can be found, a default handler (which may do a best-effort generic serialization or just simply throw an exception when invoked).JsonDeserializer<T>
JsonDeserializer. unwrappingDeserializer()
Method that will return deserializer instance that is able to handle "unwrapped" value instances If no unwrapped instance can be constructed, will simply return this object as-is.Methods in org.codehaus.jackson.map that return types with arguments of type JsonDeserializer Modifier and Type Method Description abstract Class<? extends JsonDeserializer<?>>
AnnotationIntrospector. findContentDeserializer(Annotated am)
Method for getting a deserializer definition for content (values) of associatedCollection
,array
orMap
property.Class<? extends JsonDeserializer<?>>
AnnotationIntrospector.Pair. findContentDeserializer(Annotated am)
Methods in org.codehaus.jackson.map with parameters of type JsonDeserializer Modifier and Type Method Description protected Object
ObjectMapper. _unwrapAndDeserialize(JsonParser jp, JavaType rootType, DeserializationContext ctxt, JsonDeserializer<Object> deser)
protected Object
ObjectReader. _unwrapAndDeserialize(JsonParser jp, DeserializationContext ctxt, JavaType rootType, JsonDeserializer<Object> deser)
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 likeCollection
but 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 specifiedMap
type.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 likeMap
but does not implement it).abstract boolean
DeserializationContext. handleUnknownProperty(JsonParser jp, JsonDeserializer<?> deser, Object instanceOrClass, String propName)
Method deserializers can call to inform configuredDeserializationProblemHandler
s of an unrecognized property.boolean
DeserializationProblemHandler. handleUnknownProperty(DeserializationContext ctxt, JsonDeserializer<?> deserializer, Object beanOrClass, String propertyName)
Method called when a Json Map ("Object") entry with an unrecognized name is encountered.Method parameters in org.codehaus.jackson.map with type arguments of type JsonDeserializer Modifier and Type Method Description JsonDeserializer<Object>
DeserializationConfig. deserializerInstance(Annotated annotated, Class<? extends JsonDeserializer<?>> deserClass)
abstract JsonDeserializer<?>
HandlerInstantiator. deserializerInstance(DeserializationConfig config, Annotated annotated, Class<? extends JsonDeserializer<?>> deserClass)
Method called to get an instance of deserializer of specified type.Constructors in org.codehaus.jackson.map with parameters of type JsonDeserializer Constructor Description MappingIterator(JavaType type, JsonParser jp, DeserializationContext ctxt, JsonDeserializer<?> deser)
MappingIterator(JavaType type, JsonParser jp, DeserializationContext ctxt, JsonDeserializer<?> deser, boolean closeParser, Object valueToUpdate)
-
Uses of JsonDeserializer in org.codehaus.jackson.map.annotate
Methods in org.codehaus.jackson.map.annotate that return types with arguments of type JsonDeserializer Modifier and Type Method Description Class<? extends JsonDeserializer<?>>
contentUsing()
Deserializer class to use for deserializing contents (elements of a Collection/array, values of Maps) of annotated property.Class<? extends JsonDeserializer<?>>
using()
Deserializer class to use for deserializing associated value. -
Uses of JsonDeserializer in org.codehaus.jackson.map.deser
Subclasses of JsonDeserializer in org.codehaus.jackson.map.deser Modifier and Type Class Description class
AbstractDeserializer
Deserializer only used as placeholder for abstract types during polymorphic type handling deserialization.class
ArrayDeserializer
Deprecated.Since 1.9, useObjectArrayDeserializer
instead.class
BeanDeserializer
Deserializer class that can deserialize instances of arbitrary bean objects, usually from JSON Object structs, but possibly also from simple types like String values.class
CollectionDeserializer
Deprecated.Since 1.9, useContainerDeserializerBase
instead.class
ContainerDeserializer<T>
Deprecated.Since 1.9, useContainerDeserializerBase
instead.class
DateDeserializer
Deprecated.Since 1.9, useJsonNodeDeserializer
instead.class
EnumDeserializer
Deprecated.Since 1.9, useEnumDeserializer
instead.class
FromStringDeserializer<T>
Deprecated.Since 1.9, useFromStringDeserializer
instead.class
JsonNodeDeserializer
Deprecated.Since 1.9, useJsonNodeDeserializer
instead.class
MapDeserializer
Deprecated.Since 1.9, useMapDeserializer
instead.class
StdDeserializer<T>
Deprecated.Since 1.9, useStdDeserializer
instead.class
StdDeserializer.CalendarDeserializer
Deprecated.Since 1.9 useCalendarDeserializer
instead.class
StdDeserializer.ClassDeserializer
Deprecated.Since 1.9 useClassDeserializer
instead.static class
StdDeserializer.StringDeserializer
Deprecated.Since 1.9 useStringDeserializer
instead.protected static class
StdDeserializerProvider.WrappedDeserializer
Simple deserializer that will call configured type deserializer, passing in configured data deserializer, and exposing it all as a simple deserializer.class
StdScalarDeserializer<T>
Deprecated.Since 1.9, useStdScalarDeserializer
instead.class
ThrowableDeserializer
Deprecated.Since 1.9, useThrowableDeserializer
instead.class
UntypedObjectDeserializer
Deprecated.Since 1.9, useUntypedObjectDeserializer
instead.Fields in org.codehaus.jackson.map.deser declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>
BeanDeserializer. _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>
SettableAnyProperty. _valueDeserializer
protected JsonDeserializer<Object>
SettableBeanProperty. _valueDeserializer
Deserializer used for handling property value.Fields in org.codehaus.jackson.map.deser with type parameters of type JsonDeserializer Modifier and Type Field Description protected static HashMap<JavaType,JsonDeserializer<Object>>
BasicDeserializerFactory. _arrayDeserializers
And finally, we have special array deserializers for primitive array typesprotected ConcurrentHashMap<JavaType,JsonDeserializer<Object>>
StdDeserializerProvider. _cachedDeserializers
We will also cache some dynamically constructed deserializers; specifically, ones that are expensive to construct.protected HashMap<ClassKey,JsonDeserializer<Object>>
CustomDeserializerFactory. _directClassMappings
Deprecated.Direct mappings that are used for exact class and interface type matches.protected HashMap<JavaType,JsonDeserializer<Object>>
StdDeserializerProvider. _incompleteDeserializers
During deserializer construction process we may need to keep track of partially completed deserializers, to resolve cyclic dependencies.protected HashMap<ClassKey,JsonDeserializer<Object>>
BeanDeserializer. _subDeserializers
Lazily constructed map used to contain deserializers needed for polymorphic subtypes. -
Uses of JsonDeserializer in org.codehaus.jackson.map.deser.impl
Methods in org.codehaus.jackson.map.deser.impl with parameters of type JsonDeserializer Modifier and Type Method Description void
PropertyBasedCreator. assignDeserializer(SettableBeanProperty prop, JsonDeserializer<Object> deser)
CreatorProperty
CreatorProperty. withValueDeserializer(JsonDeserializer<Object> deser)
Constructors in org.codehaus.jackson.map.deser.impl with parameters of type JsonDeserializer Constructor Description CreatorProperty(CreatorProperty src, JsonDeserializer<Object> deser)
-
Uses of JsonDeserializer in org.codehaus.jackson.map.deser.std
Subclasses of JsonDeserializer in org.codehaus.jackson.map.deser.std Modifier and Type Class Description class
AtomicBooleanDeserializer
class
AtomicReferenceDeserializer
class
CalendarDeserializer
class
ClassDeserializer
class
CollectionDeserializer
Basic serializer that can take JSON "Array" structure and construct aCollection
instance, with typed contents.class
ContainerDeserializerBase<T>
Intermediate base deserializer class that adds more shared accessor so that other classes can access information about contained (value) typesclass
DateDeserializer
Simple deserializer for handlingDate
values.class
EnumDeserializer
Deserializer class that can deserialize instances of specified Enum class from Strings and Integers.protected static class
EnumDeserializer.FactoryBasedDeserializer
Deserializer that uses a single-String static factory method for locating Enum values by String id.class
EnumMapDeserializer
Note: casting within this class is all messed up -- just could not figure out a way to properly deal with recursive definition of "EnumMap, V> class
EnumSetDeserializer
Note: casting within this class is all messed up -- just could not figure out a way to properly deal with recursive definition of "EnumSet, V> class
FromStringDeserializer<T>
Base class for simple deserializer which only accept JSON String values as the source.protected static class
FromStringDeserializer.CharsetDeserializer
static class
FromStringDeserializer.CurrencyDeserializer
protected static class
FromStringDeserializer.InetAddressDeserializer
As per [JACKSON-484], also need special handling for InetAddress...protected static class
FromStringDeserializer.LocaleDeserializer
Kept protected as it's not meant to be extensible at this pointstatic class
FromStringDeserializer.PatternDeserializer
protected static class
FromStringDeserializer.TimeZoneDeserializer
As per [JACKSON-522], also need special handling for InetAddress...static class
FromStringDeserializer.URIDeserializer
static class
FromStringDeserializer.URLDeserializer
static class
FromStringDeserializer.UUIDDeserializer
class
JavaTypeDeserializer
class
JsonNodeDeserializer
class
MapDeserializer
Basic serializer that can take Json "Object" structure and construct aMap
instance, with typed contents.class
ObjectArrayDeserializer
Basic serializer that can serialize non-primitive arrays.class
StdDeserializer<T>
Base class for common deserializers.static class
StdDeserializer.BigDecimalDeserializer
static class
StdDeserializer.BigIntegerDeserializer
This is bit trickier to implement efficiently, while avoiding overflow problems.static class
StdDeserializer.BooleanDeserializer
static class
StdDeserializer.ByteDeserializer
static class
StdDeserializer.CharacterDeserializer
static class
StdDeserializer.DoubleDeserializer
static class
StdDeserializer.FloatDeserializer
static class
StdDeserializer.IntegerDeserializer
static class
StdDeserializer.LongDeserializer
static class
StdDeserializer.NumberDeserializer
For typeNumber.class
, we can just rely on type mappings that plainJsonParser.getNumberValue()
returns.protected static class
StdDeserializer.PrimitiveOrWrapperDeserializer<T>
static class
StdDeserializer.ShortDeserializer
static class
StdDeserializer.SqlDateDeserializer
Compared to plain oldDate
, SQL version is easier to deal with: mostly because it is more limited.static class
StdDeserializer.StackTraceElementDeserializer
class
StdScalarDeserializer<T>
Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.class
StringCollectionDeserializer
class
StringDeserializer
class
ThrowableDeserializer
Deserializer that builds on basicBeanDeserializer
but override some aspects like instance construction.class
TimestampDeserializer
Simple deserializer for handlingTimestamp
values.class
TokenBufferDeserializer
We also want to directly support deserialization ofTokenBuffer
.class
UntypedObjectDeserializer
Deserializer implementation that is used if it is necessary to bind content of "unknown" type; something declared as basicObject
(either explicitly, or due to type erasure).Fields in org.codehaus.jackson.map.deser.std declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>
CollectionDeserializer. _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>
MapDeserializer. _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>
StringCollectionDeserializer. _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>
ObjectArrayDeserializer. _elementDeserializer
Element deserializerprotected JsonDeserializer<Enum<?>>
EnumSetDeserializer. _enumDeserializer
protected JsonDeserializer<Enum<?>>
EnumMapDeserializer. _keyDeserializer
protected JsonDeserializer<?>
AtomicReferenceDeserializer. _valueDeserializer
protected JsonDeserializer<Object>
CollectionDeserializer. _valueDeserializer
Value deserializer.protected JsonDeserializer<Object>
EnumMapDeserializer. _valueDeserializer
protected JsonDeserializer<Object>
MapDeserializer. _valueDeserializer
Value deserializer.protected JsonDeserializer<String>
StringCollectionDeserializer. _valueDeserializer
Value deserializer; needed even if it is the standard String deserializerMethods in org.codehaus.jackson.map.deser.std that return JsonDeserializer Modifier and Type Method Description static JsonDeserializer<?>
EnumDeserializer. deserializerForCreator(DeserializationConfig config, Class<?> enumClass, AnnotatedMethod factory)
Factory method used when Enum instances are to be deserialized using a creator (static factory method)protected JsonDeserializer<Object>
StdDeserializer. findDeserializer(DeserializationConfig config, DeserializerProvider provider, JavaType type, BeanProperty property)
Helper method used to locate deserializers for properties the type this deserializer handles contains (usually for properties of bean types)JsonDeserializer<Object>
CollectionDeserializer. getContentDeserializer()
abstract JsonDeserializer<Object>
ContainerDeserializerBase. getContentDeserializer()
Accesor for deserializer use for deserializing content values.JsonDeserializer<Object>
MapDeserializer. getContentDeserializer()
JsonDeserializer<Object>
ObjectArrayDeserializer. getContentDeserializer()
JsonDeserializer<Object>
StringCollectionDeserializer. getContentDeserializer()
static JsonDeserializer<? extends JsonNode>
JsonNodeDeserializer. getDeserializer(Class<?> nodeClass)
Factory method for accessing deserializer for specific node typeJsonDeserializer<Object>
ThrowableDeserializer. unwrappingDeserializer()
Methods in org.codehaus.jackson.map.deser.std that return types with arguments of type JsonDeserializer Modifier and Type Method Description static HashMap<JavaType,JsonDeserializer<Object>>
PrimitiveArrayDeserializers. getAll()
Methods in org.codehaus.jackson.map.deser.std with parameters of type JsonDeserializer Modifier and Type Method Description protected boolean
StdDeserializer. isDefaultSerializer(JsonDeserializer<?> deserializer)
Method that can be called to determine if given deserializer is the default deserializer Jackson uses; as opposed to a custom deserializer installed by a module or calling application. -
Uses of JsonDeserializer in org.codehaus.jackson.map.ext
Subclasses of JsonDeserializer in org.codehaus.jackson.map.ext Modifier and Type Class Description static class
CoreXMLDeserializers.DurationDeserializer
static class
CoreXMLDeserializers.GregorianCalendarDeserializer
static class
CoreXMLDeserializers.QNameDeserializer
class
DOMDeserializer<T>
Base for serializers that allows parsing DOM Documents from JSON Strings.static class
DOMDeserializer.DocumentDeserializer
static class
DOMDeserializer.NodeDeserializer
static class
JodaDeserializers.DateMidnightDeserializer
static class
JodaDeserializers.DateTimeDeserializer<T extends ReadableInstant>
Basic deserializer forDateTime
.static class
JodaDeserializers.LocalDateDeserializer
static class
JodaDeserializers.LocalDateTimeDeserializer
static class
JodaDeserializers.PeriodDeserializer
Methods in org.codehaus.jackson.map.ext that return JsonDeserializer Modifier and Type Method Description JsonDeserializer<?>
OptionalHandlerFactory. findDeserializer(JavaType type, DeserializationConfig config, DeserializerProvider p)
-
Uses of JsonDeserializer in org.codehaus.jackson.map.introspect
Methods in org.codehaus.jackson.map.introspect that return types with arguments of type JsonDeserializer Modifier and Type Method Description Class<? extends JsonDeserializer<?>>
JacksonAnnotationIntrospector. findContentDeserializer(Annotated a)
Class<JsonDeserializer<?>>
NopAnnotationIntrospector. findContentDeserializer(Annotated am)
Class<? extends JsonDeserializer<?>>
JacksonAnnotationIntrospector. findDeserializer(Annotated a)
-
Uses of JsonDeserializer in org.codehaus.jackson.map.jsontype.impl
Fields in org.codehaus.jackson.map.jsontype.impl declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>
TypeDeserializerBase. _defaultImplDeserializer
Fields in org.codehaus.jackson.map.jsontype.impl with type parameters of type JsonDeserializer Modifier and Type Field Description protected HashMap<String,JsonDeserializer<Object>>
TypeDeserializerBase. _deserializers
For efficient operation we will lazily build mappings from type ids to actual deserializers, once needed.Methods in org.codehaus.jackson.map.jsontype.impl that return JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>
TypeDeserializerBase. _findDefaultImplDeserializer(DeserializationContext ctxt)
protected JsonDeserializer<Object>
TypeDeserializerBase. _findDeserializer(DeserializationContext ctxt, String typeId)
-
Uses of JsonDeserializer in org.codehaus.jackson.map.module
Fields in org.codehaus.jackson.map.module with type parameters of type JsonDeserializer Modifier and Type Field Description protected HashMap<ClassKey,JsonDeserializer<?>>
SimpleDeserializers. _classMappings
-
Uses of JsonDeserializer in org.codehaus.jackson.xc
Subclasses of JsonDeserializer in org.codehaus.jackson.xc Modifier and Type Class Description class
DataHandlerJsonDeserializer
class
DomElementJsonDeserializer
class
XmlAdapterJsonDeserializer
Fields in org.codehaus.jackson.xc declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<?>
JaxbAnnotationIntrospector. _dataHandlerDeserializer
protected JsonDeserializer<?>
XmlAdapterJsonDeserializer. _deserializer
Methods in org.codehaus.jackson.xc that return JsonDeserializer Modifier and Type Method Description JsonDeserializer<?>
JaxbAnnotationIntrospector. findDeserializer(Annotated am)
Methods in org.codehaus.jackson.xc that return types with arguments of type JsonDeserializer Modifier and Type Method Description Class<JsonDeserializer<?>>
JaxbAnnotationIntrospector. findContentDeserializer(Annotated am)
-