| 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.module | Package that contains classes and interfaces to help implement
 custom extension  Modules
 (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module). | 
| com.fasterxml.jackson.datatype.jdk8 | |
| com.fasterxml.jackson.datatype.jsr310 | |
| com.fasterxml.jackson.module.jaxb | Package that contains support for using JAXB annotations for
 configuring Jackson data-binding aspects. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract void | Module. setupModule(Module.SetupContext context)Method called by  ObjectMapperwhen module is registered. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | SimpleModule. setupModule(Module.SetupContext context)Standard implementation handles registration of all configured
 customizations: it is important that sub-classes call this 
 implementation (usually before additional custom logic)
 if they choose to override it; otherwise customizations
 will not be registered. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | Jdk8Module. setupModule(Module.SetupContext context) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | JavaTimeModule. setupModule(Module.SetupContext context) | 
| void | JSR310Module. setupModule(Module.SetupContext context)Deprecated.  | 
| Modifier and Type | Method and Description | 
|---|---|
| void | JaxbAnnotationModule. setupModule(Module.SetupContext context) | 
Copyright © 2017 JBoss by Red Hat. All rights reserved.