Uses of Class
tools.jackson.databind.util.LinkedNode
Packages that use LinkedNode
Package
Description
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.Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
tools.jackson.databind
).Utility classes for Mapper package.
-
Uses of LinkedNode in tools.jackson.databind
Fields in tools.jackson.databind declared as LinkedNodeModifier and TypeFieldDescriptionprotected LinkedNode<JavaType>
DeserializationContext._currentType
Type ofValueDeserializer
on whichValueDeserializer.createContextual(tools.jackson.databind.DeserializationContext, tools.jackson.databind.BeanProperty)
is being called currently.protected final LinkedNode<DeserializationProblemHandler>
DeserializationConfig._problemHandlers
Linked list that contains all registered problem handlers.Methods in tools.jackson.databind that return LinkedNodeModifier and TypeMethodDescriptionDeserializationConfig.getProblemHandlers()
Method for getting head of the problem handler chain. -
Uses of LinkedNode in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg declared as LinkedNodeModifier and TypeFieldDescriptionprotected LinkedNode<DeserializationProblemHandler>
MapperBuilder._problemHandlers
Optional handlers that application may register to try to work-around various problem situations during deserializationprotected final LinkedNode<DeserializationProblemHandler>
MapperBuilderState._problemHandlers
Optional handlers that application may register to try to work-around various problem situations during deserializationMethods in tools.jackson.databind.cfg that return LinkedNode -
Uses of LinkedNode in tools.jackson.databind.util
Methods in tools.jackson.databind.util that return LinkedNodeMethods in tools.jackson.databind.util with parameters of type LinkedNodeModifier and TypeMethodDescriptionstatic <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 valuevoid
LinkedNode.linkNext
(LinkedNode<T> n) Constructors in tools.jackson.databind.util with parameters of type LinkedNode