Uses of Class
tools.jackson.databind.AbstractTypeResolver
Packages that use AbstractTypeResolver
Package
Description
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.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 (
tools.jackson.databind).Package that contains classes and interfaces to help implement
custom extension
JacksonModules
(which are registered on ObjectMapper via builders}.-
Uses of AbstractTypeResolver in tools.jackson.databind
Fields in tools.jackson.databind declared as AbstractTypeResolverModifier and TypeFieldDescriptionprotected final AbstractTypeResolver[]DeserializationConfig._abstractTypeResolversList of objects that may be able to resolve abstract types to concrete types.Methods in tools.jackson.databind that return types with arguments of type AbstractTypeResolverMethods in tools.jackson.databind with parameters of type AbstractTypeResolverModifier and TypeMethodDescriptionJacksonModule.SetupContext.addAbstractTypeResolver(AbstractTypeResolver resolver) Method that module can use to register additionalAbstractTypeResolverinstance, to handle resolution of abstract to concrete types (either by defaulting, or by materializing).Constructors in tools.jackson.databind with parameters of type AbstractTypeResolverModifierConstructorDescriptionDeserializationConfig(MapperBuilder<?, ?> b, long mapperFeatures, int deserFeatures, int streamReadFeatures, int formatReadFeatures, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs, TypeFactory tf, ClassIntrospector classIntr, MixInHandler mixins, SubtypeResolver str, ContextAttributes defaultAttrs, RootNameLookup rootNames, AbstractTypeResolver[] atrs) -
Uses of AbstractTypeResolver in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg declared as AbstractTypeResolverModifier and TypeFieldDescriptionprotected AbstractTypeResolver[]MapperBuilder._abstractTypeResolversprotected final AbstractTypeResolver[]MapperBuilderState._abstractTypeResolversprotected static final AbstractTypeResolver[]MapperBuilder.NO_ABSTRACT_TYPE_RESOLVERSMethods in tools.jackson.databind.cfg with parameters of type AbstractTypeResolverModifier and TypeMethodDescriptionMapperBuilder.addAbstractTypeResolver(AbstractTypeResolver resolver) Method for inserting specifiedAbstractTypeResolveras the first resolver in chain of possibly multiple resolvers.ModuleContextBase.addAbstractTypeResolver(AbstractTypeResolver resolver) -
Uses of AbstractTypeResolver in tools.jackson.databind.module
Subclasses of AbstractTypeResolver in tools.jackson.databind.moduleModifier and TypeClassDescriptionclassSimpleAbstractTypeResolverimplementation, which is based on static mapping from abstract super types into sub types (concrete or abstract), but retaining generic parameterization.