Uses of Class
com.fasterxml.jackson.databind.util.LinkedNode
-
Packages that use LinkedNode 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. -
-
Uses of LinkedNode in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as LinkedNode Modifier and Type Field Description protected LinkedNode<JavaType>
DeserializationContext. _currentType
Type ofJsonDeserializer
(or, more specifically,ContextualDeserializer
) that is being contextualized currently.protected LinkedNode<DeserializationProblemHandler>
DeserializationConfig. _problemHandlers
Linked list that contains all registered problem handlers.Methods in com.fasterxml.jackson.databind that return LinkedNode Modifier and Type Method Description LinkedNode<DeserializationProblemHandler>
DeserializationConfig. getProblemHandlers()
Method for getting head of the problem handler chain. -
Uses of LinkedNode in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return LinkedNode Modifier and Type Method Description LinkedNode<T>
LinkedNode. next()
Methods in com.fasterxml.jackson.databind.util with parameters of type LinkedNode 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 valuevoid
LinkedNode. linkNext(LinkedNode<T> n)
Constructors in com.fasterxml.jackson.databind.util with parameters of type LinkedNode Constructor Description LinkedNode(T value, LinkedNode<T> next)
-