Uses of Class
com.fasterxml.jackson.databind.Module
Packages that use Module
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 (
com.fasterxml.jackson.databind
).Package that contains classes and interfaces to help implement
custom extension
Module
s
(which are registered using
ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module)
.-
Uses of Module in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return types with arguments of type ModuleModifier and TypeMethodDescriptionObjectMapper.findModules()
Method for locating available methods, using JDKServiceLoader
facility, along with module-provided SPI.ObjectMapper.findModules
(ClassLoader classLoader) Method for locating available methods, using JDKServiceLoader
facility, along with module-provided SPI.Module.getDependencies()
Returns the list of dependent modules this module has, if any.Methods in com.fasterxml.jackson.databind with parameters of type ModuleModifier and TypeMethodDescriptionObjectMapper.registerModule
(Module module) Method for registering a module that can extend functionality provided by this mapper; for example, by adding providers for custom serializers and deserializers.ObjectMapper.registerModules
(Module... modules) Convenience method for registering specified modules in order; functionally equivalent to:Method parameters in com.fasterxml.jackson.databind with type arguments of type ModuleModifier and TypeMethodDescriptionObjectMapper.registerModules
(Iterable<? extends Module> modules) Convenience method for registering specified modules in order; functionally equivalent to: -
Uses of Module in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return types with arguments of type ModuleModifier and TypeMethodDescriptionMapperBuilder.findModules()
Method for locating available methods, using JDKServiceLoader
facility, along with module-provided SPI.MapperBuilder.findModules
(ClassLoader classLoader) Method for locating available methods, using JDKServiceLoader
facility, along with module-provided SPI.Methods in com.fasterxml.jackson.databind.cfg with parameters of type ModuleMethod parameters in com.fasterxml.jackson.databind.cfg with type arguments of type Module -
Uses of Module in com.fasterxml.jackson.databind.module
Subclasses of Module in com.fasterxml.jackson.databind.moduleModifier and TypeClassDescriptionclass
VanillaModule
implementation that allows registration of serializers and deserializers, bean serializer and deserializer modifiers, registration of subtypes and mix-ins as well as some other commonly needed aspects (addition of customAbstractTypeResolver
s,ValueInstantiator
s).