| 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 | Description |
|---|---|---|
protected LinkedNode<JavaType> |
DeserializationContext._currentType |
Type of
JsonDeserializer (or, more specifically,
ContextualDeserializer) that is being
contextualized currently. |
protected LinkedNode<DeserializationProblemHandler> |
DeserializationConfig._problemHandlers |
Linked list that contains all registered problem handlers.
|
| Modifier and Type | Method | Description |
|---|---|---|
LinkedNode<DeserializationProblemHandler> |
DeserializationConfig.getProblemHandlers() |
Method for getting head of the problem handler chain.
|
| Modifier and Type | Method | Description |
|---|---|---|
LinkedNode<T> |
LinkedNode.next() |
| Modifier and Type | Method | 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 | Description |
|---|---|
LinkedNode(T value,
LinkedNode<T> next) |
Copyright © 2008–2018. All rights reserved.