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. |
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.
|
Copyright © 2014–2015 FasterXML. All rights reserved.