Uses of Class
tools.jackson.core.json.JsonReadContext
Packages that use JsonReadContext
Package
Description
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
-
Uses of JsonReadContext in tools.jackson.core.json
Fields in tools.jackson.core.json declared as JsonReadContextModifier and TypeFieldDescriptionprotected JsonReadContextJsonReadContext._childprotected final JsonReadContextJsonReadContext._parentParent context for this context; null for root context.protected JsonReadContextJsonParserBase._streamReadContextInformation about parser context, context in which the next token is to be parsed (root, array, object).Methods in tools.jackson.core.json that return JsonReadContextModifier and TypeMethodDescriptionJsonReadContext.clearAndGetParent()Method that can be used to both clear the accumulated references (specifically value set withassignCurrentValue(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 JsonReadContextJsonReadContext.createRootContext(int lineNr, int colNr, DupDetector dups) static JsonReadContextJsonReadContext.createRootContext(DupDetector dups) JsonReadContext.getParent()JsonReadContext.reset(int type, int lineNr, int colNr) Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.JsonReadContext.withDupDetector(DupDetector dups) Constructors in tools.jackson.core.json with parameters of type JsonReadContextModifierConstructorDescriptionJsonReadContext(JsonReadContext parent, int nestingDepth, DupDetector dups, int type, int lineNr, int colNr)