Uses of Class
com.fasterxml.jackson.databind.BeanDescription
-
Packages that use BeanDescription 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.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.exc 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.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations.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).com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std -
-
Uses of BeanDescription in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with type parameters of type BeanDescription Modifier and Type Method Description <T extends BeanDescription>
TDeserializationConfig. introspect(JavaType type)Method that will introspect full bean properties for the purpose of building a bean deserializer<T extends BeanDescription>
TSerializationConfig. introspect(JavaType type)Method that will introspect full bean properties for the purpose of building a bean serializer<T extends BeanDescription>
TDeserializationConfig. introspectForBuilder(JavaType type)<T extends BeanDescription>
TDeserializationConfig. introspectForCreation(JavaType type)Method that will introspect subset of bean properties needed to construct bean instance.Methods in com.fasterxml.jackson.databind with parameters of type BeanDescription Modifier and Type Method Description <T> TDeserializationContext. reportBadPropertyDefinition(BeanDescription bean, BeanPropertyDefinition prop, String msg, Object... msgArgs)Helper method called to indicate problem in POJO (serialization) definitions or settings regarding specific property (of a type), unrelated to actual JSON content to map.<T> TSerializerProvider. reportBadPropertyDefinition(BeanDescription bean, BeanPropertyDefinition prop, String message, Object... msgArgs)Helper method called to indicate problem in POJO (serialization) definitions or settings regarding specific property (of a type), unrelated to actual JSON content to map.<T> TDeserializationContext. reportBadTypeDefinition(BeanDescription bean, String msg, Object... msgArgs)Helper method called to indicate problem in POJO (serialization) definitions or settings regarding specific Java type, unrelated to actual JSON content to map.<T> TSerializerProvider. reportBadTypeDefinition(BeanDescription bean, String msg, Object... msgArgs)Helper method called to indicate problem in POJO (serialization) definitions or settings regarding specific Java type, unrelated to actual JSON content to map.JavaTypeAbstractTypeResolver. resolveAbstractType(DeserializationConfig config, BeanDescription typeDesc)Method called to try to resolve an abstract type into concrete type (usually for purposes of deserializing), when no concrete implementation was found. -
Uses of BeanDescription in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return BeanDescription Modifier and Type Method Description BeanDescriptionMapperConfig. introspectClassAnnotations(JavaType type)Accessor for getting bean description that only contains class annotations: useful if no getter/setter/creator information is needed.BeanDescriptionMapperConfig. introspectClassAnnotations(Class<?> cls)Accessor for getting bean description that only contains class annotations: useful if no getter/setter/creator information is needed.BeanDescriptionMapperConfig. introspectDirectClassAnnotations(JavaType type)Accessor for getting bean description that only contains immediate class annotations: ones from the class, and its direct mix-in, if any, but not from super types.BeanDescriptionMapperConfig. introspectDirectClassAnnotations(Class<?> cls)Accessor for getting bean description that only contains immediate class annotations: ones from the class, and its direct mix-in, if any, but not from super types. -
Uses of BeanDescription in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as BeanDescription Modifier and Type Field Description protected BeanDescriptionBeanDeserializerBuilder. _beanDescIntrospected information about POJO for deserializer to handleMethods in com.fasterxml.jackson.databind.deser with parameters of type BeanDescription Modifier and Type Method Description protected voidBasicDeserializerFactory. _addDeserializerConstructors(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams)protected voidBasicDeserializerFactory. _addDeserializerFactoryMethods(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams)protected voidBasicDeserializerFactory. _addExplicitAnyCreator(DeserializationContext ctxt, BeanDescription beanDesc, CreatorCollector creators, CreatorCandidate candidate)Helper method called when there is the explicit "is-creator", but no mode declaration.protected voidBasicDeserializerFactory. _addExplicitDelegatingCreator(DeserializationContext ctxt, BeanDescription beanDesc, CreatorCollector creators, CreatorCandidate candidate)Helper method called when there is the explicit "is-creator" with mode of "delegating"protected voidBasicDeserializerFactory. _addExplicitPropertyCreator(DeserializationContext ctxt, BeanDescription beanDesc, CreatorCollector creators, CreatorCandidate candidate)Helper method called when there is the explicit "is-creator" with mode of "properties-based"protected ValueInstantiatorBasicDeserializerFactory. _constructDefaultValueInstantiator(DeserializationContext ctxt, BeanDescription beanDesc)Method that will construct standard defaultValueInstantiatorusing annotations (like @JsonCreator) and visibility rulesprotected JsonDeserializer<?>DeserializerCache. _createDeserializer2(DeserializationContext ctxt, DeserializerFactory factory, JavaType type, BeanDescription beanDesc)protected Map<AnnotatedWithParams,BeanPropertyDefinition[]>BasicDeserializerFactory. _findCreatorsFromProperties(DeserializationContext ctxt, BeanDescription beanDesc)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 voidBasicDeserializerFactory. _reportUnwrappedCreatorProperty(DeserializationContext ctxt, BeanDescription beanDesc, AnnotatedParameter param)protected voidBeanDeserializerFactory. _validateSubType(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)protected voidBeanDeserializerFactory. addBackReferenceProperties(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder)Method that will find if bean has any managed- or back-reference properties, and if so add them to bean, to be linked during resolution phase.protected voidBeanDeserializerFactory. addBeanProps(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder)Method called to figure out settable properties for the bean deserializer to use.protected voidBeanDeserializerFactory. addInjectables(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder)Method called locate all members used for value injection (if any), constructorValueInjectorinstances, and add them to builder.protected voidBeanDeserializerFactory. addObjectIdReader(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder)protected voidBeanDeserializerFactory. addReferenceProperties(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder)Deprecated.JsonDeserializer<Object>BeanDeserializerFactory. buildBeanDeserializer(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)Method that is to actually build a bean deserializer instance.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)protected SettableAnyPropertyBeanDeserializerFactory. constructAnySetter(DeserializationContext ctxt, BeanDescription beanDesc, AnnotatedMember mutator)Method called to construct fallbackSettableAnyPropertyfor handling unknown bean properties, given a method that has been designated as such setter.protected BeanDeserializerBuilderBeanDeserializerFactory. constructBeanDeserializerBuilder(DeserializationContext ctxt, BeanDescription beanDesc)Overridable method that constructs aBeanDeserializerBuilderwhich is used to accumulate information needed to create deserializer instance.protected SettableBeanPropertyBasicDeserializerFactory. constructCreatorProperty(DeserializationContext ctxt, BeanDescription beanDesc, PropertyName name, int index, AnnotatedParameter param, com.fasterxml.jackson.annotation.JacksonInject.Value injectable)Method that will construct a property object that represents a logical property passed via Creator (constructor or static factory method)static AbstractDeserializerAbstractDeserializer. constructForNonPOJO(BeanDescription beanDesc)Factory method used when constructing instances for non-POJO types, likeMaps.protected SettableBeanPropertyBeanDeserializerFactory. constructSettableProperty(DeserializationContext ctxt, BeanDescription beanDesc, BeanPropertyDefinition propDef, JavaType propType0)Method that will construct a regular bean property setter using the given setter method.protected SettableBeanPropertyBeanDeserializerFactory. constructSetterlessProperty(DeserializationContext ctxt, BeanDescription beanDesc, BeanPropertyDefinition propDef)Method that will construct a regular bean property setter using the given setter method.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.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<?>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.protected List<BeanPropertyDefinition>BeanDeserializerFactory. filterBeanProps(DeserializationContext ctxt, BeanDescription beanDesc, BeanDeserializerBuilder builder, List<BeanPropertyDefinition> propDefsIn, Set<String> ignored)Helper method called to filter out explicit ignored properties, as well as properties that have "ignorable types".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).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.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.KeyDeserializerKeyDeserializers. findKeyDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)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.ValueInstantiatorBasicDeserializerFactory. findValueInstantiator(DeserializationContext ctxt, BeanDescription beanDesc)Value instantiator is created both based on creator annotations, and on optional externally provided instantiators (registered through module interface).abstract ValueInstantiatorDeserializerFactory. findValueInstantiator(DeserializationContext ctxt, BeanDescription beanDesc)Method that is to find all creators (constructors, factory methods) for the bean type to deserialize.ValueInstantiatorValueInstantiators.Base. findValueInstantiator(DeserializationConfig config, BeanDescription beanDesc, ValueInstantiator defaultInstantiator)ValueInstantiatorValueInstantiators. findValueInstantiator(DeserializationConfig config, BeanDescription beanDesc, ValueInstantiator defaultInstantiator)Method called to find theValueInstantiatorto use for creating instances of specified type during deserialization.protected JavaTypeBeanDeserializerFactory. materializeAbstractType(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc)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.protected JavaTypeBasicDeserializerFactory. resolveType(DeserializationContext ctxt, BeanDescription beanDesc, JavaType type, AnnotatedMember member)BeanDeserializerBuilderBeanDeserializerModifier. updateBuilder(DeserializationConfig config, BeanDescription beanDesc, BeanDeserializerBuilder builder)Method called byBeanDeserializerFactorywhen it has collected basic information such as tentative list of properties to deserialize.List<BeanPropertyDefinition>BeanDeserializerModifier. updateProperties(DeserializationConfig config, BeanDescription beanDesc, List<BeanPropertyDefinition> propDefs)Method called byBeanDeserializerFactorywhen it has collected initial list ofBeanPropertyDefinitions, and done basic by-name and by-type filtering, but before constructing builder or actual property handlers; or arranging order. -
Uses of BeanDescription in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as BeanDescription Modifier and Type Field Description protected BeanDescriptionCreatorCollector. _beanDescConstructors in com.fasterxml.jackson.databind.deser.impl with parameters of type BeanDescription Constructor Description CreatorCollector(BeanDescription beanDesc, MapperConfig<?> config) -
Uses of BeanDescription in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std with parameters of type BeanDescription Modifier and Type Method Description KeyDeserializerStdKeyDeserializers. findKeyDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc) -
Uses of BeanDescription in com.fasterxml.jackson.databind.exc
Fields in com.fasterxml.jackson.databind.exc declared as BeanDescription Modifier and Type Field Description protected BeanDescriptionInvalidDefinitionException. _beanDescMethods in com.fasterxml.jackson.databind.exc that return BeanDescription Modifier and Type Method Description BeanDescriptionInvalidDefinitionException. getBeanDescription()Accessor for type definition (class) that had the definition problem, if any; may sometimes be undefined or unknown; if so, returnsnull.Methods in com.fasterxml.jackson.databind.exc with parameters of type BeanDescription Modifier and Type Method Description static InvalidDefinitionExceptionInvalidDefinitionException. from(com.fasterxml.jackson.core.JsonGenerator g, String msg, BeanDescription bean, BeanPropertyDefinition prop)static InvalidDefinitionExceptionInvalidDefinitionException. from(com.fasterxml.jackson.core.JsonParser p, String msg, BeanDescription bean, BeanPropertyDefinition prop)Constructors in com.fasterxml.jackson.databind.exc with parameters of type BeanDescription Constructor Description InvalidDefinitionException(com.fasterxml.jackson.core.JsonGenerator g, String msg, BeanDescription bean, BeanPropertyDefinition prop)InvalidDefinitionException(com.fasterxml.jackson.core.JsonParser p, String msg, BeanDescription bean, BeanPropertyDefinition prop) -
Uses of BeanDescription in com.fasterxml.jackson.databind.ext
Methods in com.fasterxml.jackson.databind.ext with parameters of type BeanDescription Modifier and Type Method Description JsonDeserializer<?>CoreXMLDeserializers. findBeanDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>OptionalHandlerFactory. findDeserializer(JavaType type, DeserializationConfig config, BeanDescription beanDesc)JsonSerializer<?>CoreXMLSerializers. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>OptionalHandlerFactory. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc) -
Uses of BeanDescription in com.fasterxml.jackson.databind.introspect
Subclasses of BeanDescription in com.fasterxml.jackson.databind.introspect Modifier and Type Class Description classBasicBeanDescriptionDefaultBeanDescriptionimplementation used by Jackson.Methods in com.fasterxml.jackson.databind.introspect that return BeanDescription Modifier and Type Method Description abstract BeanDescriptionClassIntrospector. forClassAnnotations(MapperConfig<?> cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that only has information regarding annotations class itself (or its supertypes) has, but nothing on methods or constructors.abstract BeanDescriptionClassIntrospector. forCreation(DeserializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has information necessary for creating instances of given class ("creator"), as well as class annotations, but no information on member methodsabstract BeanDescriptionClassIntrospector. forDeserialization(DeserializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has all information needed for deserialization purposes.abstract BeanDescriptionClassIntrospector. forDeserializationWithBuilder(DeserializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has all information needed for constructing deserializers that use intermediate Builder objects.abstract BeanDescriptionClassIntrospector. forDirectClassAnnotations(MapperConfig<?> cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that only has information regarding annotations class itself has (but NOT including its supertypes), but nothing on methods or constructors.abstract BeanDescriptionClassIntrospector. forSerialization(SerializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has all information needed for serialization purposes. -
Uses of BeanDescription in com.fasterxml.jackson.databind.jsontype.impl
Methods in com.fasterxml.jackson.databind.jsontype.impl with parameters of type BeanDescription Modifier and Type Method Description voidSubTypeValidator. validateSubType(DeserializationContext ctxt, JavaType type, BeanDescription beanDesc) -
Uses of BeanDescription in com.fasterxml.jackson.databind.module
-
Uses of BeanDescription in com.fasterxml.jackson.databind.ser
Fields in com.fasterxml.jackson.databind.ser declared as BeanDescription Modifier and Type Field Description protected BeanDescriptionBeanSerializerBuilder. _beanDescprotected BeanDescriptionPropertyBuilder. _beanDescMethods in com.fasterxml.jackson.databind.ser that return BeanDescription Modifier and Type Method Description BeanDescriptionBeanSerializerBuilder. getBeanDescription()Methods in com.fasterxml.jackson.databind.ser with parameters of type BeanDescription Modifier and Type Method Description protected MapSerializerBasicSerializerFactory. _checkMapContentInclusion(SerializerProvider prov, BeanDescription beanDesc, MapSerializer mapSer)Helper method that does figures out content inclusion value to use, if any, and construct re-configuredMapSerializerappropriately.protected JsonSerializer<?>BeanSerializerFactory. _createSerializer2(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)protected com.fasterxml.jackson.annotation.JsonInclude.ValueBasicSerializerFactory. _findInclusionWithContent(SerializerProvider prov, BeanDescription beanDesc, JavaType contentType, Class<?> configType)Helper method used for finding inclusion definitions for structured container types likeMaps and referential types (likeAtomicReference).protected JsonSerializer<?>BasicSerializerFactory. buildArraySerializer(SerializerProvider prov, ArrayType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forObject[](and subtypes, except for String).protected JsonSerializer<?>BasicSerializerFactory. buildAtomicReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentSerializer)protected JsonSerializer<?>BasicSerializerFactory. buildCollectionSerializer(SerializerProvider prov, CollectionType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forListtypes that support efficient by-index accessprotected JsonSerializer<?>BasicSerializerFactory. buildContainerSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)protected JsonSerializer<?>BasicSerializerFactory. buildEnumSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)protected JsonSerializer<?>BasicSerializerFactory. buildIterableSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildIteratorSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildMapEntrySerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType keyType, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildMapSerializer(SerializerProvider prov, MapType type, BeanDescription beanDesc, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forMaptypes.List<BeanPropertyWriter>BeanSerializerModifier. changeProperties(SerializationConfig config, BeanDescription beanDesc, List<BeanPropertyWriter> beanProperties)Method called byBeanSerializerFactorywith tentative set of discovered properties.protected JsonSerializer<Object>BeanSerializerFactory. constructBeanOrAddOnSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method called to construct serializer for serializing specified bean type if (but only if, as of 2.10), at least one property is found.protected JsonSerializer<Object>BeanSerializerFactory. constructBeanSerializer(SerializerProvider prov, BeanDescription beanDesc)Deprecated.protected BeanSerializerBuilderBeanSerializerFactory. constructBeanSerializerBuilder(BeanDescription beanDesc)protected ObjectIdWriterBeanSerializerFactory. constructObjectIdHandler(SerializerProvider prov, BeanDescription beanDesc, List<BeanPropertyWriter> props)protected PropertyBuilderBeanSerializerFactory. constructPropertyBuilder(SerializationConfig config, BeanDescription beanDesc)protected List<BeanPropertyWriter>BeanSerializerFactory. filterBeanProperties(SerializationConfig config, BeanDescription beanDesc, List<BeanPropertyWriter> props)Overridable method that can filter out properties.JsonSerializer<?>Serializers.Base. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified array type.JsonSerializer<Object>BeanSerializerFactory. findBeanOrAddOnSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method that will try to construct aBeanSerializerfor given class if at least one property is found, OR, if not, one of add-on types.protected List<BeanPropertyWriter>BeanSerializerFactory. findBeanProperties(SerializerProvider prov, BeanDescription beanDesc, BeanSerializerBuilder builder)Method used to collect all actual serializable properties.JsonSerializer<Object>BeanSerializerFactory. findBeanSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc)Deprecated.JsonSerializer<?>Serializers.Base. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Collection-like" type (type that acts likeCollection, but does not implement it).JsonSerializer<?>Serializers.Base. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedCollectiontype.protected ObjectBasicSerializerFactory. findFilterId(SerializationConfig config, BeanDescription beanDesc)Method called to find filter that is configured to be used with bean serializer being built, if any.JsonSerializer<?>Serializers.Base. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Map-like" type (type that acts likeMap, but does not implement it).JsonSerializer<?>Serializers.Base. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedMaptype.protected JsonSerializer<?>BasicSerializerFactory. findOptionalStdSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Overridable method called after checking all other types.JsonSerializer<?>BasicSerializerFactory. findReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping)JsonSerializer<?>Serializers.Base. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)JsonSerializer<?>Serializers. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)Method called by serialization framework first time a serializer is needed for givenReferenceTypeJsonSerializer<?>Serializers.Base. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>Serializers. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)Method called by serialization framework first time a serializer is needed for specified type, which is not of a container or reference type (for which other methods are called).protected JsonSerializer<?>BasicSerializerFactory. findSerializerByAddonType(SerializationConfig config, JavaType javaType, BeanDescription beanDesc, boolean staticTyping)Reflection-based serialized find method, which checks if given class implements one of recognized "add-on" interfaces.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByAnnotations(SerializerProvider prov, JavaType type, BeanDescription beanDesc)Method called to see if one of primary per-class annotations (or related, like implementing ofJsonSerializable) determines the serializer to use.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByLookup(JavaType type, SerializationConfig config, BeanDescription beanDesc, boolean staticTyping)Method that will use fast lookup (and identity comparison) methods to see if we know serializer to use for given type.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByPrimaryType(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method for checking if we can determine serializer to use based on set of known primary types, checking for set of known base types (exact matches having been compared against withfindSerializerByLookup).JsonSerializer<?>BeanSerializerModifier. modifyArraySerializer(SerializationConfig config, ArrayType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the standard serializer for givenArrayTypeto make it possible to either replace or augment this serializer with additional functionality.JsonSerializer<?>BeanSerializerModifier. modifyCollectionLikeSerializer(SerializationConfig config, CollectionLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyCollectionSerializer(SerializationConfig config, CollectionType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyEnumSerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyKeySerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the default key serializer to use for serializingMapkeys of given type.JsonSerializer<?>BeanSerializerModifier. modifyMapLikeSerializer(SerializationConfig config, MapLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyMapSerializer(SerializationConfig config, MapType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifySerializer(SerializationConfig config, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byBeanSerializerFactoryafter constructing default bean serializer instance with properties collected and ordered earlier.List<BeanPropertyWriter>BeanSerializerModifier. orderProperties(SerializationConfig config, BeanDescription beanDesc, List<BeanPropertyWriter> beanProperties)Method called byBeanSerializerFactorywith set of properties to serialize, in default ordering (based on defaults as well as possible type annotations).protected voidBeanSerializerFactory. removeIgnorableTypes(SerializationConfig config, BeanDescription beanDesc, List<BeanPropertyDefinition> properties)Method that will apply by-type limitations (as per [JACKSON-429]); by default this is based onJsonIgnoreTypeannotation but can be supplied by module-provided introspectors too.protected List<BeanPropertyWriter>BeanSerializerFactory. removeOverlappingTypeIds(SerializerProvider prov, BeanDescription beanDesc, BeanSerializerBuilder builder, List<BeanPropertyWriter> props)Helper method called to ensure that we do not have "duplicate" type ids.protected voidBeanSerializerFactory. removeSetterlessGetters(SerializationConfig config, BeanDescription beanDesc, List<BeanPropertyDefinition> properties)Helper method that will remove all properties that do not have a mutator.BeanSerializerBuilderBeanSerializerModifier. updateBuilder(SerializationConfig config, BeanDescription beanDesc, BeanSerializerBuilder builder)Method called byBeanSerializerFactoryafter collecting all information regarding POJO to serialize and updating builder with it, but before constructing serializer.protected booleanBasicSerializerFactory. usesStaticTyping(SerializationConfig config, BeanDescription beanDesc, TypeSerializer typeSer)Helper method to check whether global settings and/or class annotations for the bean class indicate that static typing (declared types) should be used for properties.Constructors in com.fasterxml.jackson.databind.ser with parameters of type BeanDescription Constructor Description BeanSerializerBuilder(BeanDescription beanDesc)PropertyBuilder(SerializationConfig config, BeanDescription beanDesc) -
Uses of BeanDescription in com.fasterxml.jackson.databind.ser.std
Methods in com.fasterxml.jackson.databind.ser.std with parameters of type BeanDescription Modifier and Type Method Description static EnumSerializerEnumSerializer. construct(Class<?> enumClass, SerializationConfig config, BeanDescription beanDesc, com.fasterxml.jackson.annotation.JsonFormat.Value format)Factory method used byBasicSerializerFactoryfor constructing serializer instance of Enum types.
-