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 JsonReadContextParserBase._parsingContextInformation 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 JsonReadContextJsonReadContext._childprotected final JsonReadContextJsonReadContext._parentParent 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 withJsonReadContext.setCurrentValue(Object)) that should not be retained, and returns parent (as wouldJsonReadContext.getParent()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.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.