| 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.util | Utility classes for Mapper package. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected LinkedNode<JavaType> | DeserializationContext. _currentTypeType of  JsonDeserializer(or, more specifically,ContextualDeserializer) that is being
   contextualized currently. | 
| protected LinkedNode<DeserializationProblemHandler> | DeserializationConfig. _problemHandlersLinked 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 | 
|---|---|
| LinkedNode<T> | LinkedNode. next() | 
| Modifier and Type | Method and Description | 
|---|---|
| static <ST> boolean | LinkedNode. contains(LinkedNode<ST> node,
        ST value)Convenience method that can be used to check if a linked list
 with given head node (which may be null to indicate empty list)
 contains given value | 
| void | LinkedNode. linkNext(LinkedNode<T> n) | 
| Constructor and Description | 
|---|
| LinkedNode(T value,
          LinkedNode<T> next) | 
Copyright © 2008–2020 FasterXML. All rights reserved.