Uses of Class
com.fasterxml.jackson.databind.JsonDeserializer
-
Packages that use JsonDeserializer Package Description com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.annotation Annotations that directly depend on classes in databinding bundle (not just Jackson core) and cannot be included in Jackson core annotations package (because it cannot have any external dependencies).com.fasterxml.jackson.databind.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind).com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses.com.fasterxml.jackson.databind.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.com.fasterxml.jackson.databind.jsontype.impl Package that contains standard implementations forTypeResolverBuilderandTypeIdResolver.com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module). -
-
Uses of JsonDeserializer in com.fasterxml.jackson.databind
Subclasses of JsonDeserializer in com.fasterxml.jackson.databind Modifier and Type Class Description static classJsonDeserializer.NoneThis marker class is only to be used with annotations, to indicate that no deserializer is configured.Fields in com.fasterxml.jackson.databind declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<T>MappingIterator. _deserializerDeserializer for individual element values.protected JsonDeserializer<Object>ObjectReader. _rootDeserializerWe may pre-fetch deserializer as soon asObjectReader._valueTypeis known, and if so, reuse it afterwards.Fields in com.fasterxml.jackson.databind with type parameters of type JsonDeserializer Modifier and Type Field Description protected ConcurrentHashMap<JavaType,JsonDeserializer<Object>>ObjectMapper. _rootDeserializersWe will use a separate main-level Map for keeping track of root-level deserializers.protected ConcurrentHashMap<JavaType,JsonDeserializer<Object>>ObjectReader. _rootDeserializersRoot-level cached deserializers.Methods in com.fasterxml.jackson.databind that return JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>ObjectMapper. _findRootDeserializer(DeserializationContext ctxt, JavaType valueType)Method called to locate deserializer for the passed root-level value.protected JsonDeserializer<Object>ObjectReader. _findRootDeserializer(DeserializationContext ctxt)Method called to locate deserializer for the passed root-level value.protected JsonDeserializer<Object>ObjectReader. _findTreeDeserializer(DeserializationContext ctxt)protected JsonDeserializer<Object>ObjectReader. _prefetchRootDeserializer(JavaType valueType)Method called to locate deserializer ahead of time, if permitted by configuration.abstract JsonDeserializer<Object>DeserializationContext. deserializerInstance(Annotated annotated, Object deserDef)JsonDeserializer<Object>DeserializationContext. findContextualValueDeserializer(JavaType type, BeanProperty prop)Method for finding a value deserializer, and creating a contextual version if necessary, for value reached via specified property.JsonDeserializer<Object>DeserializationContext. findNonContextualValueDeserializer(JavaType type)Variant that will try to locate deserializer for current type, but without performing any contextualization (unlikeDeserializationContext.findContextualValueDeserializer(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.BeanProperty)) or checking for need to create aTypeDeserializer(unlikeDeserializationContext.findRootValueDeserializer(JavaType).JsonDeserializer<Object>DeserializationContext. findRootValueDeserializer(JavaType type)Method for finding a deserializer for root-level value.JsonDeserializer<?>JsonDeserializer. getDelegatee()Accessor that can be used to determine if this deserializer uses another deserializer for actual deserialization, by delegating calls.JsonDeserializer<?>DeserializationContext. handlePrimaryContextualization(JsonDeserializer<?> deser, BeanProperty prop, JavaType type)Method called for primary property deserializers (ones directly created to deserialize values of a POJO property), to handle details of resolvingContextualDeserializerwith given property context.JsonDeserializer<?>DeserializationContext. handleSecondaryContextualization(JsonDeserializer<?> deser, BeanProperty prop, JavaType type)Method called for secondary property deserializers (ones NOT directly created to deal with an annotatable POJO property, but instead created as a component -- such as value deserializers for structured types, or deserializers for root values) to handle details of resolvingContextualDeserializerwith given property context.JsonDeserializer<?>JsonDeserializer. replaceDelegatee(JsonDeserializer<?> delegatee)Method that can be called to try to replace deserializer this deserializer delegates calls to.JsonDeserializer<T>JsonDeserializer. unwrappingDeserializer(NameTransformer unwrapper)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 com.fasterxml.jackson.databind with parameters of type JsonDeserializer Modifier and Type Method Description protected ObjectReaderObjectReader. _new(ObjectReader base, DeserializationConfig config, JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, com.fasterxml.jackson.core.FormatSchema schema, InjectableValues injectableValues, DataFormatReaders dataFormatReaders)Overridable factory method called by various "withXxx()" methodsprotected <T> MappingIterator<T>ObjectReader. _newIterator(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonDeserializer<?> deser, boolean parserManaged)Factory method used to createMappingIteratorinstances; either default, or custom subtype.protected ObjectObjectMapper. _unwrapAndDeserialize(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, DeserializationConfig config, JavaType rootType, JsonDeserializer<Object> deser)protected ObjectObjectReader. _unwrapAndDeserialize(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JavaType rootType, JsonDeserializer<Object> deser)voidDeserializationContext. handleBadMerge(JsonDeserializer<?> deser)Method that deserializer may call if it is called to do an update ("merge") but deserializer operates on a non-mergeable type.JsonDeserializer<?>DeserializationContext. handlePrimaryContextualization(JsonDeserializer<?> deser, BeanProperty prop, JavaType type)Method called for primary property deserializers (ones directly created to deserialize values of a POJO property), to handle details of resolvingContextualDeserializerwith given property context.JsonDeserializer<?>DeserializationContext. handleSecondaryContextualization(JsonDeserializer<?> deser, BeanProperty prop, JavaType type)Method called for secondary property deserializers (ones NOT directly created to deal with an annotatable POJO property, but instead created as a component -- such as value deserializers for structured types, or deserializers for root values) to handle details of resolvingContextualDeserializerwith given property context.booleanDeserializationContext. handleUnknownProperty(com.fasterxml.jackson.core.JsonParser p, JsonDeserializer<?> deser, Object instanceOrClass, String propName)Method that deserializers should call if they encounter an unrecognized property (and once that is not explicitly designed as ignorable), to inform possibly configuredDeserializationProblemHandlers and let it handle the problem.JsonDeserializer<?>JsonDeserializer. replaceDelegatee(JsonDeserializer<?> delegatee)Method that can be called to try to replace deserializer this deserializer delegates calls to.<T> TDeserializationContext. reportBadMerge(JsonDeserializer<?> deser)Deprecated.Since 2.10 useDeserializationContext.handleBadMerge(com.fasterxml.jackson.databind.JsonDeserializer<?>)instead<T> TDeserializationContext. reportInputMismatch(JsonDeserializer<?> src, String msg, Object... msgArgs)Helper method used to indicate a problem with input in cases where more specificreportXxx()method was not available.voidDeserializationContext. reportUnknownProperty(Object instanceOrClass, String fieldName, JsonDeserializer<?> deser)voidDeserializationContext. reportWrongTokenException(JsonDeserializer<?> deser, com.fasterxml.jackson.core.JsonToken expToken, String msg, Object... msgArgs)Method for deserializers to call when the token encountered was of type different than what should be seen at that position, usually within a sequence of expected tokens.Constructors in com.fasterxml.jackson.databind with parameters of type JsonDeserializer Constructor Description MappingIterator(JavaType type, com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonDeserializer<?> deser, boolean managedParser, Object valueToUpdate)ObjectReader(ObjectReader base, DeserializationConfig config, JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, com.fasterxml.jackson.core.FormatSchema schema, InjectableValues injectableValues, DataFormatReaders dataFormatReaders)Copy constructor used for building variations. -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.annotation
Methods in com.fasterxml.jackson.databind.annotation 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 com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return JsonDeserializer Modifier and Type Method Description abstract JsonDeserializer<?>HandlerInstantiator. deserializerInstance(DeserializationConfig config, Annotated annotated, Class<?> deserClass)Method called to get an instance of deserializer of specified type. -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.deser
Subclasses of JsonDeserializer in com.fasterxml.jackson.databind.deser Modifier and Type Class Description classAbstractDeserializerDeserializer only used for abstract types used as placeholders during polymorphic type handling deserialization.classBeanDeserializerDeserializer class that can deserialize instances of arbitrary bean objects, usually from JSON Object structs,classBeanDeserializerBaseBase class forBeanDeserializer.classBuilderBasedDeserializerClass that handles deserialization using a separate Builder class, which is used for data binding and produces actual deserialized value at the end of data binding.Fields in com.fasterxml.jackson.databind.deser declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>BeanDeserializerBase. _arrayDelegateDeserializerDeserializer that is used iff array-delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>BeanDeserializerBase. _delegateDeserializerDeserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>SettableAnyProperty. _valueDeserializerprotected JsonDeserializer<Object>SettableBeanProperty. _valueDeserializerDeserializer used for handling property value.protected static JsonDeserializer<Object>SettableBeanProperty. MISSING_VALUE_DESERIALIZERTo avoid nasty NPEs, let's use a placeholder for _valueDeserializer, if real deserializer is not (yet) available.Fields in com.fasterxml.jackson.databind.deser with type parameters of type JsonDeserializer Modifier and Type Field Description protected LRUMap<JavaType,JsonDeserializer<Object>>DeserializerCache. _cachedDeserializersWe will also cache some dynamically constructed deserializers; specifically, ones that are expensive to construct.protected HashMap<JavaType,JsonDeserializer<Object>>DeserializerCache. _incompleteDeserializersDuring deserializer construction process we may need to keep track of partially completed deserializers, to resolve cyclic dependencies.protected HashMap<ClassKey,JsonDeserializer<Object>>BeanDeserializerBase. _subDeserializersLazily constructed map used to contain deserializers needed for polymorphic subtypes.Methods in com.fasterxml.jackson.databind.deser that return JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>DeserializerCache. _createAndCache2(DeserializationContext ctxt, DeserializerFactory factory, JavaType type)Method that handles actual construction (via factory) and caching (both intermediate and eventual)protected JsonDeserializer<Object>DeserializerCache. _createAndCacheValueDeserializer(DeserializationContext ctxt, DeserializerFactory factory, JavaType type)Method that will try to create a deserializer for given type, and resolve and cache it if necessaryprotected JsonDeserializer<Object>DeserializerCache. _createDeserializer(DeserializationContext ctxt, DeserializerFactory factory, JavaType type)Method that does the heavy lifting of checking for per-type annotations, find out full type, and figure out which actual factory method to call.protected JsonDeserializer<?>DeserializerCache. _createDeserializer2(DeserializationContext ctxt, DeserializerFactory factory, JavaType type, BeanDescription beanDesc)protected JsonDeserializer<Object>DeserializerCache. _findCachedDeserializer(JavaType type)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<Object>BasicDeserializerFactory. _findCustomBeanDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomEnumDeserializer(Class<?> type, DeserializationConfig config, BeanDescription beanDesc)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomReferenceDeserializer(ReferenceType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomTreeNodeDeserializer(Class<? extends JsonNode> type, DeserializationConfig config, BeanDescription beanDesc)protected JsonDeserializer<Object>BeanDeserializerBase. _findSubclassDeserializer(DeserializationContext ctxt, Object bean, TokenBuffer unknownTokens)Helper method called to (try to) locate deserializer for given sub-type of type that this deserializer handles.protected JsonDeserializer<Object>DeserializerCache. _handleUnknownValueDeserializer(DeserializationContext ctxt, JavaType type)JsonDeserializer<?>BeanDeserializerBuilder. build()Method for constructing aBeanDeserializer, given all information collected.JsonDeserializer<Object>BeanDeserializerFactory. buildBeanDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Method that is to actually build a bean deserializer instance.JsonDeserializer<?>BeanDeserializerBuilder. buildBuilderBased(JavaType valueType, String expBuildMethodName)Method for constructing a specialized deserializer that uses additional external Builder object during data binding.protected JsonDeserializer<Object>BeanDeserializerFactory. buildBuilderBasedDeserializer(DeserializationContext ctxt, JavaType valueType, BeanDescription builderDesc)Method for constructing a bean deserializer that uses specified intermediate Builder for binding data, and construction of the value instance.JsonDeserializer<Object>BeanDeserializerFactory. buildThrowableDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createArrayDeserializer(DeserializationContext ctxt, ArrayType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createArrayDeserializer(DeserializationContext ctxt, ArrayType type, BeanDescription beanDesc)Method called to create (or, for completely immutable deserializers, reuse) a deserializer that can convert JSON content into values of specified Java type.JsonDeserializer<Object>BeanDeserializerFactory. createBeanDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Method thatDeserializerCaches call to create a new deserializer for types other than Collections, Maps, arrays and enums.abstract JsonDeserializer<Object>DeserializerFactory. createBeanDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)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.protected JsonDeserializer<?>BeanDeserializerBuilder. createBuilderBasedDeserializer(JavaType valueType, BeanPropertyMap propertyMap, boolean anyViews)Extension point for overriding the actual creation of the builder deserializer.JsonDeserializer<Object>BeanDeserializerFactory. createBuilderBasedDeserializer(DeserializationContext ctxt, JavaType valueType, BeanDescription beanDesc, Class<?> builderClass)abstract JsonDeserializer<Object>DeserializerFactory. createBuilderBasedDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc, Class<?> builderClass)Method called to create a deserializer that will use specified Builder class for building value instances.JsonDeserializer<?>BasicDeserializerFactory. createCollectionDeserializer(DeserializationContext ctxt, CollectionType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createCollectionDeserializer(DeserializationContext ctxt, CollectionType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createCollectionLikeDeserializer(DeserializationContext ctxt, CollectionLikeType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createCollectionLikeDeserializer(DeserializationContext ctxt, CollectionLikeType type, BeanDescription beanDesc)JsonDeserializer<?>AbstractDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>BeanDeserializerBase. createContextual(DeserializationContext ctxt, BeanProperty property)Although most of post-processing is done in resolve(), we only get access to referring property's annotations here; and this is needed to support per-property ObjectIds.JsonDeserializer<?>ContextualDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)Method called to see if a different (or differently configured) deserializer is needed to deserialize values of specified property.JsonDeserializer<?>BasicDeserializerFactory. createEnumDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Factory method for constructing serializers ofEnumtypes.abstract JsonDeserializer<?>DeserializerFactory. createEnumDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createMapLikeDeserializer(DeserializationContext ctxt, MapLikeType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createMapLikeDeserializer(DeserializationContext ctxt, MapLikeType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createReferenceDeserializer(DeserializationContext ctxt, ReferenceType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createReferenceDeserializer(DeserializationContext ctxt, ReferenceType type, BeanDescription beanDesc)JsonDeserializer<?>BasicDeserializerFactory. createTreeDeserializer(DeserializationConfig config, JavaType nodeType, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createTreeDeserializer(DeserializationConfig config, JavaType type, BeanDescription beanDesc)Method called to create and return a deserializer that can construct JsonNode(s) from JSON content.JsonDeserializer<Object>DefaultDeserializationContext. deserializerInstance(Annotated ann, Object deserDef)JsonDeserializer<?>Deserializers.Base. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified array type.JsonDeserializer<?>Deserializers.Base. findBeanDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>Deserializers. findBeanDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)Method called to locate deserializer for specified value type which does not belong to any other category (not an Enum, Collection, Map, Array, reference value or tree node)JsonDeserializer<?>Deserializers.Base. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specifiedCollection(List, Set etc) type.JsonDeserializer<?>Deserializers.Base. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Collection-like" type (one that acts likeCollectionbut does not implement it).protected JsonDeserializer<Object>BasicDeserializerFactory. findContentDeserializerFromAnnotation(DeserializationContext ctxt, Annotated ann)protected JsonDeserializer<Object>BeanDeserializerBase. findConvertingDeserializer(DeserializationContext ctxt, SettableBeanProperty prop)Helper method that can be used to see if specified property is annotated to indicate use of a converter for property value (in case of container types, it is container type itself, not key or content type).protected JsonDeserializer<Object>DeserializerCache. findConvertingDeserializer(DeserializationContext ctxt, Annotated a, JsonDeserializer<Object> deser)Helper method that will check whether given annotated entity (usually class, but may also be a property accessor) indicates that aConverteris to be used; and if so, to construct and return suitable serializer for it.JsonDeserializer<?>BasicDeserializerFactory. findDefaultDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Helper method called to find one of default serializers for "well-known" platform types: JDK-provided types, and small number of public Jackson API types.protected JsonDeserializer<Object>BasicDeserializerFactory. findDeserializerFromAnnotation(DeserializationContext ctxt, Annotated ann)Helper method called to check if a class or method has annotation that tells which class to use for deserialization; and if so, to instantiate, that deserializer to use.protected JsonDeserializer<Object>DeserializerCache. findDeserializerFromAnnotation(DeserializationContext ctxt, Annotated ann)Helper method called to check if a class or method has annotation that tells which class to use for deserialization.JsonDeserializer<?>Deserializers.Base. findEnumDeserializer(Class<?> type, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>Deserializers. findEnumDeserializer(Class<?> type, DeserializationConfig config, BeanDescription beanDesc)Method called to locate deserializer for specifiedEnumtype.JsonDeserializer<?>Deserializers.Base. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate deserializer for specifiedMaptype.JsonDeserializer<?>Deserializers.Base. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Map-like" type (one that acts likeMapbut does not implement it).protected JsonDeserializer<?>BasicDeserializerFactory. findOptionalStdDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Overridable method called after checking all other types.JsonDeserializer<?>Deserializers.Base. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)JsonDeserializer<?>Deserializers. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)Method called to locate deserializer for value that is of referential type,protected JsonDeserializer<?>BeanDeserializerFactory. findStdDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Method called byBeanDeserializerFactoryto see if there might be a standard deserializer registered for given type.JsonDeserializer<?>Deserializers.Base. findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>Deserializers. findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc)Method called to locate deserializer for specified JSON tree node type.JsonDeserializer<Object>DeserializerCache. findValueDeserializer(DeserializationContext ctxt, DeserializerFactory factory, JavaType propertyType)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<Object>SettableBeanProperty.Delegating. getValueDeserializer()JsonDeserializer<Object>SettableBeanProperty. getValueDeserializer()JsonDeserializer<?>BeanDeserializerModifier. modifyArrayDeserializer(DeserializationConfig config, ArrayType valueType, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byDeserializerFactoryafter it has constructed the standard deserializer for givenArrayTypeto make it possible to either replace or augment this deserializer with additional functionality.JsonDeserializer<?>BeanDeserializerModifier. modifyCollectionDeserializer(DeserializationConfig config, CollectionType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultCollectionTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyCollectionLikeDeserializer(DeserializationConfig config, CollectionLikeType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultCollectionLikeTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyDeserializer(DeserializationConfig config, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing default bean deserializer instance with properties collected and ordered earlier.JsonDeserializer<?>BeanDeserializerModifier. modifyEnumDeserializer(DeserializationConfig config, JavaType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing default enum type deserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyMapDeserializer(DeserializationConfig config, MapType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultMapTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyMapLikeDeserializer(DeserializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultMapLikeTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyReferenceDeserializer(DeserializationConfig config, ReferenceType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultReferenceTypedeserializer instance.JsonDeserializer<Object>BeanDeserializer. unwrappingDeserializer(NameTransformer transformer)abstract JsonDeserializer<Object>BeanDeserializerBase. unwrappingDeserializer(NameTransformer unwrapper)JsonDeserializer<Object>BuilderBasedDeserializer. unwrappingDeserializer(NameTransformer unwrapper)Methods in com.fasterxml.jackson.databind.deser with parameters of type JsonDeserializer Modifier and Type Method Description protected ObjectBeanDeserializerBase. _convertObjectId(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, Object rawId, JsonDeserializer<Object> idDeser)Helper method we need to do necessary conversion from whatever native object id type is, into declared type that Jackson internals expect.protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomReferenceDeserializer(ReferenceType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)JsonDeserializer<?>Deserializers.Base. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified array type.JsonDeserializer<?>Deserializers.Base. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specifiedCollection(List, Set etc) type.JsonDeserializer<?>Deserializers.Base. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Collection-like" type (one that acts likeCollectionbut does not implement it).protected JsonDeserializer<Object>DeserializerCache. findConvertingDeserializer(DeserializationContext ctxt, Annotated a, JsonDeserializer<Object> deser)Helper method that will check whether given annotated entity (usually class, but may also be a property accessor) indicates that aConverteris to be used; and if so, to construct and return suitable serializer for it.JsonDeserializer<?>Deserializers.Base. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate deserializer for specifiedMaptype.JsonDeserializer<?>Deserializers.Base. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate serializer for specified "Map-like" type (one that acts likeMapbut does not implement it).JsonDeserializer<?>Deserializers.Base. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)JsonDeserializer<?>Deserializers. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)Method called to locate deserializer for value that is of referential type,booleanDeserializationProblemHandler. handleUnknownProperty(DeserializationContext ctxt, com.fasterxml.jackson.core.JsonParser p, JsonDeserializer<?> deserializer, Object beanOrClass, String propertyName)Method called when a JSON Object property with an unrecognized name is encountered.JsonDeserializer<?>BeanDeserializerModifier. modifyArrayDeserializer(DeserializationConfig config, ArrayType valueType, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byDeserializerFactoryafter it has constructed the standard deserializer for givenArrayTypeto make it possible to either replace or augment this deserializer with additional functionality.JsonDeserializer<?>BeanDeserializerModifier. modifyCollectionDeserializer(DeserializationConfig config, CollectionType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultCollectionTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyCollectionLikeDeserializer(DeserializationConfig config, CollectionLikeType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultCollectionLikeTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyDeserializer(DeserializationConfig config, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing default bean deserializer instance with properties collected and ordered earlier.JsonDeserializer<?>BeanDeserializerModifier. modifyEnumDeserializer(DeserializationConfig config, JavaType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing default enum type deserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyMapDeserializer(DeserializationConfig config, MapType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultMapTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyMapLikeDeserializer(DeserializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultMapLikeTypedeserializer instance.JsonDeserializer<?>BeanDeserializerModifier. modifyReferenceDeserializer(DeserializationConfig config, ReferenceType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultReferenceTypedeserializer instance.SettableBeanPropertyCreatorProperty. withValueDeserializer(JsonDeserializer<?> deser)SettableAnyPropertySettableAnyProperty. withValueDeserializer(JsonDeserializer<Object> deser)SettableBeanPropertySettableBeanProperty.Delegating. withValueDeserializer(JsonDeserializer<?> deser)abstract SettableBeanPropertySettableBeanProperty. withValueDeserializer(JsonDeserializer<?> deser)Fluent factory method for constructing and returning a new instance with specified value deserializer.Constructors in com.fasterxml.jackson.databind.deser with parameters of type JsonDeserializer Constructor Description CreatorProperty(CreatorProperty src, JsonDeserializer<?> deser, NullValueProvider nva)SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser)Deprecated.SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, KeyDeserializer keyDeser, JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser)SettableBeanProperty(SettableBeanProperty src, JsonDeserializer<?> deser, NullValueProvider nuller)Copy-with-deserializer-change constructor for sub-classes to use.SettableBeanProperty(PropertyName propName, JavaType type, PropertyMetadata metadata, JsonDeserializer<Object> valueDeser)Constructor only used byObjectIdValueProperty. -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.deser.impl
Subclasses of JsonDeserializer in com.fasterxml.jackson.databind.deser.impl Modifier and Type Class Description classBeanAsArrayBuilderDeserializerclassBeanAsArrayDeserializerVariant ofBeanDeserializerused for handling deserialization of POJOs when serialized as JSON Arrays, instead of JSON Objects.classErrorThrowingDeserializerA deserializer that stores anErrorcaught during constructing of the deserializer, which needs to be deferred and only during actual attempt to deserialize a value of given type.classFailingDeserializerSpecial bogus "serializer" that will throwJsonMappingExceptionif an attempt is made to deserialize a value.classTypeWrappedDeserializerSimple deserializer that will call configured type deserializer, passing in configured data deserializer, and exposing it all as a simple deserializer.Fields in com.fasterxml.jackson.databind.deser.impl declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<?>NullsAsEmptyProvider. _deserializerprotected JsonDeserializer<Object>ObjectIdReader. _deserializerDeserializer used for deserializing id values.protected JsonDeserializer<Object>TypeWrappedDeserializer. _deserializerMethods in com.fasterxml.jackson.databind.deser.impl that return JsonDeserializer Modifier and Type Method Description static JsonDeserializer<?>JavaUtilCollectionsDeserializers. findForCollection(DeserializationContext ctxt, JavaType type)static JsonDeserializer<?>JavaUtilCollectionsDeserializers. findForMap(DeserializationContext ctxt, JavaType type)JsonDeserializer<?>TypeWrappedDeserializer. getDelegatee()JsonDeserializer<Object>ObjectIdReader. getDeserializer()JsonDeserializer<Object>BeanAsArrayBuilderDeserializer. unwrappingDeserializer(NameTransformer unwrapper)JsonDeserializer<Object>BeanAsArrayDeserializer. unwrappingDeserializer(NameTransformer unwrapper)Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type JsonDeserializer Modifier and Type Method Description static ObjectIdReaderObjectIdReader. construct(JavaType idType, PropertyName propName, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> generator, JsonDeserializer<?> deser, SettableBeanProperty idProp, com.fasterxml.jackson.annotation.ObjectIdResolver resolver)Factory method called byBeanSerializerBasewith the initial information based on standard settings for the type for which serializer is being built.SettableBeanPropertyFieldProperty. withValueDeserializer(JsonDeserializer<?> deser)SettableBeanPropertyMethodProperty. withValueDeserializer(JsonDeserializer<?> deser)SettableBeanPropertyObjectIdReferenceProperty. withValueDeserializer(JsonDeserializer<?> deser)SettableBeanPropertyObjectIdValueProperty. withValueDeserializer(JsonDeserializer<?> deser)SettableBeanPropertySetterlessProperty. withValueDeserializer(JsonDeserializer<?> deser)Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type JsonDeserializer Constructor Description FieldProperty(FieldProperty src, JsonDeserializer<?> deser, NullValueProvider nva)MethodProperty(MethodProperty src, JsonDeserializer<?> deser, NullValueProvider nva)NullsAsEmptyProvider(JsonDeserializer<?> deser)ObjectIdReader(JavaType t, PropertyName propName, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen, JsonDeserializer<?> deser, SettableBeanProperty idProp, com.fasterxml.jackson.annotation.ObjectIdResolver resolver)ObjectIdReferenceProperty(ObjectIdReferenceProperty src, JsonDeserializer<?> deser, NullValueProvider nva)ObjectIdValueProperty(ObjectIdValueProperty src, JsonDeserializer<?> deser, NullValueProvider nva)SetterlessProperty(SetterlessProperty src, JsonDeserializer<?> deser, NullValueProvider nva)TypeWrappedDeserializer(TypeDeserializer typeDeser, JsonDeserializer<?> deser) -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.deser.std
Subclasses of JsonDeserializer in com.fasterxml.jackson.databind.deser.std Modifier and Type Class Description classArrayBlockingQueueDeserializerWe need a custom deserializer both becauseArrayBlockingQueuehas no default constructor AND because it has size limit used for constructing underlying storage automatically.classAtomicBooleanDeserializerclassAtomicReferenceDeserializerclassByteBufferDeserializerclassCollectionDeserializerBasic serializer that can take JSON "Array" structure and construct aCollectioninstance, with typed contents.classContainerDeserializerBase<T>Intermediate base deserializer class that adds more shared accessor so that other classes can access information about contained (value) typesstatic classDateDeserializers.CalendarDeserializerprotected static classDateDeserializers.DateBasedDeserializer<T>static classDateDeserializers.DateDeserializerSimple deserializer for handlingDatevalues.static classDateDeserializers.SqlDateDeserializerCompared to plain oldDate, SQL version is easier to deal with: mostly because it is more limited.static classDateDeserializers.TimestampDeserializerSimple deserializer for handlingTimestampvalues.classDelegatingDeserializerBase class that simplifies implementations ofJsonDeserializers that mostly delegate functionality to another deserializer implementation (possibly forming a chaing of deserializers delegating functionality in some cases)classEnumDeserializerDeserializer class that can deserialize instances of specified Enum class from Strings and Integers.classEnumMapDeserializerDeserializer forEnumMapvalues.classEnumSetDeserializerStandard deserializer forEnumSets.classFromStringDeserializer<T>Base class for simple deserializers that serialize values from String representation: this includes JSON Strings and other Scalar values that can be coerced into text, like Numbers and Booleans).static classFromStringDeserializer.Std"Chameleon" deserializer that works on simple types that are deserialized from a simple String.classJsonNodeDeserializerclassMapDeserializerBasic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classMapEntryDeserializerBasic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classNullifyingDeserializerBogus deserializer that will simply skip all content there is to map and returns Java null reference.static classNumberDeserializers.BigDecimalDeserializerstatic classNumberDeserializers.BigIntegerDeserializerThis is bit trickier to implement efficiently, while avoiding overflow problems.static classNumberDeserializers.BooleanDeserializerstatic classNumberDeserializers.ByteDeserializerstatic classNumberDeserializers.CharacterDeserializerstatic classNumberDeserializers.DoubleDeserializerstatic classNumberDeserializers.FloatDeserializerstatic classNumberDeserializers.IntegerDeserializerstatic classNumberDeserializers.LongDeserializerstatic classNumberDeserializers.NumberDeserializerFor typeNumber.class, we can just rely on type mappings that plainJsonParser.getNumberValue()returns.protected static classNumberDeserializers.PrimitiveOrWrapperDeserializer<T>static classNumberDeserializers.ShortDeserializerclassObjectArrayDeserializerBasic serializer that can serialize non-primitive arrays.classPrimitiveArrayDeserializers<T>Container for deserializers used for instantiating "primitive arrays", arrays that contain non-object java primitive types.classReferenceTypeDeserializer<T>Base deserializer implementation for propertiesReferenceTypevalues.classStackTraceElementDeserializerclassStdDelegatingDeserializer<T>Deserializer implementation where given Java type is first deserialized by a standard Jackson deserializer into a delegate type; and then this delegate type is converted using a configuredConverterinto desired target type.classStdDeserializer<T>Base class for common deserializers.classStdNodeBasedDeserializer<T>Convenience deserializer that may be used to deserialize values given an intermediate tree representation (JsonNode).classStdScalarDeserializer<T>Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.classStringArrayDeserializerSeparate implementation for serializing String arrays (instead of usingObjectArrayDeserializer.classStringCollectionDeserializerSpecifically optimized version forCollections that contain String values; reason is that this is a very common type and we can make use of the fact that Strings are final.classStringDeserializerclassThrowableDeserializerDeserializer that builds on basicBeanDeserializerbut override some aspects like instance construction.classTokenBufferDeserializerWe also want to directly support deserialization ofTokenBuffer.classUntypedObjectDeserializerDeserializer 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).static classUntypedObjectDeserializer.VanillaclassUUIDDeserializerFields in com.fasterxml.jackson.databind.deser.std declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>CollectionDeserializer. _delegateDeserializerDeserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>EnumMapDeserializer. _delegateDeserializerDeserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>MapDeserializer. _delegateDeserializerDeserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<Object>StdDelegatingDeserializer. _delegateDeserializerUnderlying serializer for typeT.protected JsonDeserializer<Object>StringCollectionDeserializer. _delegateDeserializerDeserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.protected JsonDeserializer<?>DelegatingDeserializer. _delegateeprotected JsonDeserializer<Object>ObjectArrayDeserializer. _elementDeserializerElement deserializerprotected JsonDeserializer<String>StringArrayDeserializer. _elementDeserializerValue serializer to use, if not the standard one (which is inlined)protected JsonDeserializer<Enum<?>>EnumSetDeserializer. _enumDeserializerprotected JsonDeserializer<Object>UntypedObjectDeserializer. _listDeserializerprotected JsonDeserializer<Object>UntypedObjectDeserializer. _mapDeserializerprotected JsonDeserializer<Object>UntypedObjectDeserializer. _numberDeserializerprotected JsonDeserializer<Object>UntypedObjectDeserializer. _stringDeserializerprotected JsonDeserializer<Object>StdNodeBasedDeserializer. _treeDeserializerprotected JsonDeserializer<Object>CollectionDeserializer. _valueDeserializerValue deserializer.protected JsonDeserializer<Object>EnumMapDeserializer. _valueDeserializerprotected JsonDeserializer<Object>MapDeserializer. _valueDeserializerValue deserializer.protected JsonDeserializer<Object>MapEntryDeserializer. _valueDeserializerValue deserializer.protected JsonDeserializer<Object>ReferenceTypeDeserializer. _valueDeserializerprotected JsonDeserializer<String>StringCollectionDeserializer. _valueDeserializerValue deserializer to use, if NOT the standard one (if it is, will be null).Methods in com.fasterxml.jackson.databind.deser.std that return JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>UntypedObjectDeserializer. _clearIfStdImpl(JsonDeserializer<Object> deser)protected JsonDeserializer<Object>UntypedObjectDeserializer. _findCustomDeser(DeserializationContext ctxt, JavaType type)JsonDeserializer<?>DateDeserializers.DateBasedDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>DelegatingDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>EnumDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>EnumMapDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)Method called to finalize setup of this deserializer, when it is known for which property deserializer is needed for.JsonDeserializer<?>EnumSetDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>MapDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)Method called to finalize setup of this deserializer, when it is known for which property deserializer is needed for.JsonDeserializer<?>MapEntryDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)Method called to finalize setup of this deserializer, when it is known for which property deserializer is needed for.JsonDeserializer<?>ObjectArrayDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>PrimitiveArrayDeserializers. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>ReferenceTypeDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>StdDelegatingDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>StringArrayDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)Contextualization is needed to see whether we can "inline" deserialization of String values, or if we have to use separate value deserializer.JsonDeserializer<?>StringCollectionDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)JsonDeserializer<?>UntypedObjectDeserializer. createContextual(DeserializationContext ctxt, BeanProperty property)We only use contextualization for optimizing the case where no customization occurred; if so, can slip in a more streamlined version.static JsonDeserializer<?>EnumDeserializer. deserializerForCreator(DeserializationConfig config, Class<?> enumClass, AnnotatedMethod factory)Deprecated.Since 2.8static JsonDeserializer<?>EnumDeserializer. deserializerForCreator(DeserializationConfig config, Class<?> enumClass, AnnotatedMethod factory, ValueInstantiator valueInstantiator, SettableBeanProperty[] creatorProps)Factory method used when Enum instances are to be deserialized using a creator (static factory method)static JsonDeserializer<?>EnumDeserializer. deserializerForNoArgsCreator(DeserializationConfig config, Class<?> enumClass, AnnotatedMethod factory)Factory method used when Enum instances are to be deserialized using a zero-/no-args factory methodstatic JsonDeserializer<?>DateDeserializers. find(Class<?> rawType, String clsName)static JsonDeserializer<?>JdkDeserializers. find(Class<?> rawType, String clsName)static JsonDeserializer<?>NumberDeserializers. find(Class<?> rawType, String clsName)protected JsonDeserializer<?>StdDeserializer. findConvertingContentDeserializer(DeserializationContext ctxt, BeanProperty prop, JsonDeserializer<?> existingDeserializer)Helper method that can be used to see if specified property has annotation indicating that a converter is to be used for contained values (contents of structured types; array/List/Map values)protected JsonDeserializer<Object>StdDeserializer. findDeserializer(DeserializationContext ctxt, JavaType type, BeanProperty property)Helper method used to locate deserializers for properties the type this deserializer handles contains (usually for properties of bean types)static JsonDeserializer<?>PrimitiveArrayDeserializers. forType(Class<?> rawType)JsonDeserializer<Object>CollectionDeserializer. getContentDeserializer()abstract JsonDeserializer<Object>ContainerDeserializerBase. getContentDeserializer()Accesor for deserializer use for deserializing content values.JsonDeserializer<Object>EnumMapDeserializer. getContentDeserializer()JsonDeserializer<Object>MapDeserializer. getContentDeserializer()JsonDeserializer<Object>MapEntryDeserializer. getContentDeserializer()JsonDeserializer<Object>ObjectArrayDeserializer. getContentDeserializer()JsonDeserializer<Object>StringCollectionDeserializer. getContentDeserializer()JsonDeserializer<?>DelegatingDeserializer. getDelegatee()JsonDeserializer<?>StdDelegatingDeserializer. getDelegatee()static JsonDeserializer<? extends JsonNode>JsonNodeDeserializer. getDeserializer(Class<?> nodeClass)Factory method for accessing deserializer for specific node typeprotected abstract JsonDeserializer<?>DelegatingDeserializer. newDelegatingInstance(JsonDeserializer<?> newDelegatee)JsonDeserializer<?>DelegatingDeserializer. replaceDelegatee(JsonDeserializer<?> delegatee)JsonDeserializer<Object>ThrowableDeserializer. unwrappingDeserializer(NameTransformer unwrapper)Methods in com.fasterxml.jackson.databind.deser.std with parameters of type JsonDeserializer Modifier and Type Method Description protected JsonDeserializer<Object>UntypedObjectDeserializer. _clearIfStdImpl(JsonDeserializer<Object> deser)protected NullValueProviderStdDeserializer. _findNullProvider(DeserializationContext ctxt, BeanProperty prop, com.fasterxml.jackson.annotation.Nulls nulls, JsonDeserializer<?> valueDeser)static KeyDeserializerStdKeyDeserializers. constructDelegatingKeyDeserializer(DeserializationConfig config, JavaType type, JsonDeserializer<?> deser)protected NullValueProviderStdDeserializer. findContentNullProvider(DeserializationContext ctxt, BeanProperty prop, JsonDeserializer<?> valueDeser)Method called to findNullValueProviderfor a contents of a structured primary property (Collection, Map, array), using "content nulls" setting.protected JsonDeserializer<?>StdDeserializer. findConvertingContentDeserializer(DeserializationContext ctxt, BeanProperty prop, JsonDeserializer<?> existingDeserializer)Helper method that can be used to see if specified property has annotation indicating that a converter is to be used for contained values (contents of structured types; array/List/Map values)protected booleanStdDeserializer. isDefaultDeserializer(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.protected abstract JsonDeserializer<?>DelegatingDeserializer. newDelegatingInstance(JsonDeserializer<?> newDelegatee)JsonDeserializer<?>DelegatingDeserializer. replaceDelegatee(JsonDeserializer<?> delegatee)protected StdDelegatingDeserializer<T>StdDelegatingDeserializer. withDelegate(Converter<Object,T> converter, JavaType delegateType, JsonDeserializer<?> delegateDeserializer)Method used for creating resolved contextual instances.EnumSetDeserializerEnumSetDeserializer. withDeserializer(JsonDeserializer<?> deser)ObjectArrayDeserializerObjectArrayDeserializer. withDeserializer(TypeDeserializer elemTypeDeser, JsonDeserializer<?> elemDeser)Overridable fluent-factory method used to create contextual instancesprotected ArrayBlockingQueueDeserializerArrayBlockingQueueDeserializer. withResolved(JsonDeserializer<?> dd, JsonDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, Boolean unwrapSingle)Fluent-factory method call to construct contextual instance.AtomicReferenceDeserializerAtomicReferenceDeserializer. withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> valueDeser)protected CollectionDeserializerCollectionDeserializer. withResolved(JsonDeserializer<?> dd, JsonDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, Boolean unwrapSingle)Fluent-factory method call to construct contextual instance.EnumMapDeserializerEnumMapDeserializer. withResolved(KeyDeserializer keyDeserializer, JsonDeserializer<?> valueDeserializer, TypeDeserializer valueTypeDeser, NullValueProvider nuller)EnumSetDeserializerEnumSetDeserializer. withResolved(JsonDeserializer<?> deser, NullValueProvider nuller, Boolean unwrapSingle)EnumSetDeserializerEnumSetDeserializer. withResolved(JsonDeserializer<?> deser, Boolean unwrapSingle)Deprecated.protected MapDeserializerMapDeserializer. withResolved(KeyDeserializer keyDeser, TypeDeserializer valueTypeDeser, JsonDeserializer<?> valueDeser, NullValueProvider nuller, Set<String> ignorable)Fluent factory method used to create a copy with slightly different settings.protected MapEntryDeserializerMapEntryDeserializer. withResolved(KeyDeserializer keyDeser, TypeDeserializer valueTypeDeser, JsonDeserializer<?> valueDeser)Fluent factory method used to create a copy with slightly different settings.ObjectArrayDeserializerObjectArrayDeserializer. withResolved(TypeDeserializer elemTypeDeser, JsonDeserializer<?> elemDeser, NullValueProvider nuller, Boolean unwrapSingle)protected abstract ReferenceTypeDeserializer<T>ReferenceTypeDeserializer. withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> valueDeser)Mutant factory method called when changes are needed; should construct newly configured instance with new values as indicated.protected StringCollectionDeserializerStringCollectionDeserializer. withResolved(JsonDeserializer<?> delegateDeser, JsonDeserializer<?> valueDeser, NullValueProvider nuller, Boolean unwrapSingle) -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.ext
Subclasses of JsonDeserializer in com.fasterxml.jackson.databind.ext Modifier and Type Class Description static classCoreXMLDeserializers.StdCombo-deserializer that supports deserialization of somewhat optional javax.xml typesQName,DurationandXMLGregorianCalendar.classDOMDeserializer<T>Base for serializers that allows parsing DOM Documents from JSON Strings.static classDOMDeserializer.DocumentDeserializerstatic classDOMDeserializer.NodeDeserializerclassNioPathDeserializerMethods in com.fasterxml.jackson.databind.ext that return JsonDeserializer Modifier and Type Method Description JsonDeserializer<?>CoreXMLDeserializers. findBeanDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>OptionalHandlerFactory. findDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)abstract JsonDeserializer<?>Java7Handlers. getDeserializerForJavaNioFilePath(Class<?> rawType)JsonDeserializer<?>Java7HandlersImpl. getDeserializerForJavaNioFilePath(Class<?> rawType) -
Uses of JsonDeserializer in com.fasterxml.jackson.databind.jsontype.impl
Fields in com.fasterxml.jackson.databind.jsontype.impl declared as JsonDeserializer Modifier and Type Field Description protected JsonDeserializer<Object>TypeDeserializerBase. _defaultImplDeserializerFields in com.fasterxml.jackson.databind.jsontype.impl with type parameters of type JsonDeserializer Modifier and Type Field Description protected Map<String,JsonDeserializer<Object>>TypeDeserializerBase. _deserializersFor efficient operation we will lazily build mappings from type ids to actual deserializers, once needed.Methods in com.fasterxml.jackson.databind.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 com.fasterxml.jackson.databind.module
Fields in com.fasterxml.jackson.databind.module with type parameters of type JsonDeserializer Modifier and Type Field Description protected HashMap<ClassKey,JsonDeserializer<?>>SimpleDeserializers. _classMappingsMethods in com.fasterxml.jackson.databind.module with parameters of type JsonDeserializer Modifier and Type Method Description <T> voidSimpleDeserializers. addDeserializer(Class<T> forClass, JsonDeserializer<? extends T> deser)<T> SimpleModuleSimpleModule. addDeserializer(Class<T> type, JsonDeserializer<? extends T> deser)Method for adding deserializer to handle specified type.JsonDeserializer<?>SimpleDeserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>SimpleDeserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>SimpleDeserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>SimpleDeserializers. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>SimpleDeserializers. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>SimpleDeserializers. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)Method parameters in com.fasterxml.jackson.databind.module with type arguments of type JsonDeserializer Modifier and Type Method Description voidSimpleDeserializers. addDeserializers(Map<Class<?>,JsonDeserializer<?>> desers)Constructor parameters in com.fasterxml.jackson.databind.module with type arguments of type JsonDeserializer Constructor Description SimpleDeserializers(Map<Class<?>,JsonDeserializer<?>> desers)SimpleModule(String name, com.fasterxml.jackson.core.Version version, Map<Class<?>,JsonDeserializer<?>> deserializers)SimpleModule(String name, com.fasterxml.jackson.core.Version version, Map<Class<?>,JsonDeserializer<?>> deserializers, List<JsonSerializer<?>> serializers)
-