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 | Description |
---|---|---|
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
|
Constructor | Description |
---|---|
LinkedNode(T value,
LinkedNode<T> next) |