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 ). |
Modifier and Type | Field and Description |
---|---|
protected LinkedNode<DeserializationProblemHandler> |
DeserializationConfig._problemHandlers
Linked list that contains all registered problem handlers.
|
Modifier and Type | Method and Description |
---|---|
LinkedNode<DeserializationProblemHandler> |
DeserializationConfig.getProblemHandlers()
Method for getting head of the problem handler chain.
|
Modifier and Type | Method and Description |
---|---|
void |
Module.SetupContext.addDeserializationProblemHandler(DeserializationProblemHandler handler)
Add a deserialization problem handler
|
ObjectMapper |
ObjectMapper.addHandler(DeserializationProblemHandler h)
Method for adding specified
DeserializationProblemHandler
to be used for handling specific problems during deserialization. |
ObjectReader |
ObjectReader.withHandler(DeserializationProblemHandler h) |
DeserializationConfig |
DeserializationConfig.withHandler(DeserializationProblemHandler h)
Method that can be used to add a handler that can (try to)
resolve non-fatal deserialization problems.
|
Modifier and Type | Method and Description |
---|---|
B |
MapperBuilder.addHandler(DeserializationProblemHandler h)
Method used for adding a
DeserializationProblemHandler for this
builder, at the head of the list (meaning it has priority over handler
registered earlier). |
Copyright © 2008–2021 FasterXML. All rights reserved.