Package | Description |
---|---|
org.codehaus.jackson.map |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
org.codehaus.jackson.map.util |
Utility classes for Mapper package.
|
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 |
---|---|
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
|
Constructor and Description |
---|
LinkedNode(T value,
LinkedNode<T> next) |