Uses of Interface
com.fasterxml.jackson.core.TreeNode
Packages that use TreeNode
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonGenerator
)
instances.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
Utility classes used by Jackson Core functionality.
-
Uses of TreeNode in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core with type parameters of type TreeNodeModifier and TypeMethodDescriptionabstract <T extends TreeNode>
TObjectCodec.readTree
(JsonParser p) Method for deserializing JSON content as tree expressed using set ofTreeNode
instances.abstract <T extends TreeNode>
TTreeCodec.readTree
(JsonParser p) <T extends TreeNode>
TJsonParser.readValueAsTree()
Method to deserialize JSON content into equivalent "tree model", represented by rootTreeNode
of resulting model.Methods in com.fasterxml.jackson.core that return TreeNodeModifier and TypeMethodDescriptionTreeNode.at
(JsonPointer ptr) Method for locating node specified by given JSON pointer instances.Convenience method that is functionally equivalent to:abstract TreeNode
ObjectCodec.createArrayNode()
Method for construct root level Array nodes for Tree Model instances.abstract TreeNode
TreeCodec.createArrayNode()
abstract TreeNode
ObjectCodec.createObjectNode()
Method for construct root level Object nodes for Tree Model instances.abstract TreeNode
TreeCodec.createObjectNode()
TreeNode.get
(int index) Method for accessing value of the specified element of an array node.Method for accessing value of the specified field of an object node.TreeCodec.missingNode()
TreeCodec.nullNode()
TreeNode.path
(int index) Method for accessing value of the specified element of an array node.Method for accessing value of the specified field of an object node.Methods in com.fasterxml.jackson.core with parameters of type TreeNodeModifier and TypeMethodDescriptionabstract JsonParser
ObjectCodec.treeAsTokens
(TreeNode n) Method for constructing aJsonParser
for reading contents of a JSON tree, as if it was external serialized JSON content.abstract JsonParser
TreeCodec.treeAsTokens
(TreeNode node) abstract <T> T
ObjectCodec.treeToValue
(TreeNode n, Class<T> valueType) Convenience method for converting given JSON tree into instance of specified value type.abstract void
Method for writing given JSON tree (expressed as a tree where given JsonNode is the root) using this generator.abstract void
ObjectCodec.writeTree
(JsonGenerator gen, TreeNode tree) Method for serializing JSON content from given Tree instance, using specified generator.abstract void
TreeCodec.writeTree
(JsonGenerator g, TreeNode tree) -
Uses of TreeNode in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base with parameters of type TreeNode -
Uses of TreeNode in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util with parameters of type TreeNode