Uses of Class
com.fasterxml.jackson.core.json.JsonReadContext
Packages that use JsonReadContext
Package
Description
Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
-
Uses of JsonReadContext in com.fasterxml.jackson.core.base
Fields in com.fasterxml.jackson.core.base declared as JsonReadContextModifier and TypeFieldDescriptionprotected JsonReadContext
ParserBase._parsingContext
Information about parser context, context in which the next token is to be parsed (root, array, object).Methods in com.fasterxml.jackson.core.base that return JsonReadContext -
Uses of JsonReadContext in com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as JsonReadContextModifier and TypeFieldDescriptionprotected JsonReadContext
JsonReadContext._child
protected final JsonReadContext
JsonReadContext._parent
Parent context for this context; null for root context.Methods in com.fasterxml.jackson.core.json that return JsonReadContextModifier and TypeMethodDescriptionJsonReadContext.clearAndGetParent()
Method that can be used to both clear the accumulated references (specifically value set withsetCurrentValue(Object)
) that should not be retained, and returns parent (as wouldgetParent()
do).JsonReadContext.createChildArrayContext
(int lineNr, int colNr) JsonReadContext.createChildObjectContext
(int lineNr, int colNr) static JsonReadContext
JsonReadContext.createRootContext
(int lineNr, int colNr, DupDetector dups) static JsonReadContext
JsonReadContext.createRootContext
(DupDetector dups) JsonReadContext.getParent()
JsonReadContext.withDupDetector
(DupDetector dups) Constructors in com.fasterxml.jackson.core.json with parameters of type JsonReadContextModifierConstructorDescriptionJsonReadContext
(JsonReadContext parent, int nestingDepth, DupDetector dups, int type, int lineNr, int colNr) JsonReadContext
(JsonReadContext parent, DupDetector dups, int type, int lineNr, int colNr) Deprecated.