Uses of Interface
com.fasterxml.jackson.core.TreeNode
-
Packages that use TreeNode Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.util 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 TreeNode Modifier and Type Method Description abstract <T extends TreeNode>
TObjectCodec. readTree(JsonParser p)Method to deserialize JSON content as tree expressed using set ofTreeNodeinstances.abstract <T extends TreeNode>
TTreeCodec. readTree(JsonParser p)<T extends TreeNode>
TJsonParser. readValueAsTree()Method to deserialize JSON content into equivalent "tree model", represented by rootTreeNodeof resulting model.Methods in com.fasterxml.jackson.core that return TreeNode Modifier and Type Method Description TreeNodeTreeNode. at(JsonPointer ptr)Method for locating node specified by given JSON pointer instances.TreeNodeTreeNode. at(java.lang.String jsonPointerExpression)Convenience method that is functionally equivalent to:abstract TreeNodeObjectCodec. createArrayNode()Method for construct root level Array nodes for Tree Model instances.abstract TreeNodeTreeCodec. createArrayNode()abstract TreeNodeObjectCodec. createObjectNode()Method for construct root level Object nodes for Tree Model instances.abstract TreeNodeTreeCodec. createObjectNode()TreeNodeTreeNode. get(int index)Method for accessing value of the specified element of an array node.TreeNodeTreeNode. get(java.lang.String fieldName)Method for accessing value of the specified field of an object node.TreeNodeTreeCodec. missingNode()TreeNodeTreeCodec. nullNode()TreeNodeTreeNode. path(int index)Method for accessing value of the specified element of an array node.TreeNodeTreeNode. path(java.lang.String fieldName)Method for accessing value of the specified field of an object node.Methods in com.fasterxml.jackson.core with parameters of type TreeNode Modifier and Type Method Description abstract JsonParserObjectCodec. treeAsTokens(TreeNode n)Method for constructing aJsonParserfor reading contents of a JSON tree, as if it was external serialized JSON content.abstract JsonParserTreeCodec. treeAsTokens(TreeNode node)abstract <T> TObjectCodec. treeToValue(TreeNode n, java.lang.Class<T> valueType)Convenience method for converting given JSON tree into instance of specified value type.abstract voidJsonGenerator. writeTree(TreeNode rootNode)Method for writing given JSON tree (expressed as a tree where given JsonNode is the root) using this generator.abstract voidObjectCodec. writeTree(JsonGenerator gen, TreeNode tree)abstract voidTreeCodec. 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 Modifier and Type Method Description voidGeneratorBase. writeTree(TreeNode rootNode) -
Uses of TreeNode in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util with parameters of type TreeNode Modifier and Type Method Description voidJsonGeneratorDelegate. writeTree(TreeNode tree)
-