Java com.fasterxml.jackson.core ObjectCodec fields, constructors, methods, implement or subclass

Example usage for Java com.fasterxml.jackson.core ObjectCodec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.fasterxml.jackson.core ObjectCodec.

The text is from its open source code.

Method

TreeNodecreateObjectNode()
Method for construct root level Object nodes for Tree Model instances.
TreadTree(JsonParser jp)
Method to deserialize JSON content as tree expressed using set of TreeNode instances.
TreadValue(JsonParser jp, Class valueType)
Method to deserialize JSON content into a non-container type (it can be an array type, however): typically a bean, array or a wrapper type (like java.lang.Boolean ).
TreadValue(JsonParser jp, TypeReference valueTypeRef)
Method to deserialize JSON content into a Java type, reference to which is passed as argument.
TreadValue(JsonParser jp, ResolvedType valueType)
Method to deserialize JSON content into a POJO, type specified with fully resolved type object (so it can be a generic type, including containers like java.util.Collection and java.util.Map ).
JsonParsertreeAsTokens(TreeNode n)
Method for constructing a JsonParser for reading contents of a JSON tree, as if it was external serialized JSON content.
TtreeToValue(TreeNode n, Class valueType)
Convenience method for converting given JSON tree into instance of specified value type.