Uses of Class
com.fasterxml.jackson.databind.Module
-
Packages that use Module 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.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.datatype.jdk8 com.fasterxml.jackson.datatype.jsr310 com.fasterxml.jackson.module.jakarta.xmlbind Package that contains support for using JAXB annotations for configuring Jackson data-binding aspects. -
-
Uses of Module in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return types with arguments of type Module Modifier and Type Method Description static List<Module>ObjectMapper. findModules()Method for locating available methods, using JDKServiceLoaderfacility, along with module-provided SPI.static List<Module>ObjectMapper. findModules(ClassLoader classLoader)Method for locating available methods, using JDKServiceLoaderfacility, along with module-provided SPI.Iterable<? extends Module>Module. getDependencies()Returns the list of dependent modules this module has, if any.Methods in com.fasterxml.jackson.databind with parameters of type Module Modifier and Type Method Description ObjectMapperObjectMapper. 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.ObjectMapperObjectMapper. 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 Module Modifier and Type Method Description ObjectMapperObjectMapper. 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 Module Modifier and Type Method Description static List<Module>MapperBuilder. findModules()Method for locating available methods, using JDKServiceLoaderfacility, along with module-provided SPI.static List<Module>MapperBuilder. findModules(ClassLoader classLoader)Method for locating available methods, using JDKServiceLoaderfacility, along with module-provided SPI.Methods in com.fasterxml.jackson.databind.cfg with parameters of type Module Modifier and Type Method Description BMapperBuilder. addModule(Module module)BMapperBuilder. addModules(Module... modules)Method parameters in com.fasterxml.jackson.databind.cfg with type arguments of type Module Modifier and Type Method Description BMapperBuilder. addModules(Iterable<? extends Module> modules) -
Uses of Module in com.fasterxml.jackson.databind.module
Subclasses of Module in com.fasterxml.jackson.databind.module Modifier and Type Class Description classSimpleModuleVanillaModuleimplementation 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 customAbstractTypeResolvers,ValueInstantiators). -
Uses of Module in com.fasterxml.jackson.datatype.jdk8
Subclasses of Module in com.fasterxml.jackson.datatype.jdk8 Modifier and Type Class Description classJdk8Module -
Uses of Module in com.fasterxml.jackson.datatype.jsr310
Subclasses of Module in com.fasterxml.jackson.datatype.jsr310 Modifier and Type Class Description classJavaTimeModuleClass that registers capability of serializingjava.timeobjects with the Jackson core.classJSR310ModuleDeprecated.Replaced byJavaTimeModulesince Jackson 2.7, see above for details on differences in the default configuration. -
Uses of Module in com.fasterxml.jackson.module.jakarta.xmlbind
Subclasses of Module in com.fasterxml.jackson.module.jakarta.xmlbind Modifier and Type Class Description classJakartaXmlBindAnnotationModuleModule that can be registered to add support for JAXB annotations.
-