Uses of Class
com.fasterxml.jackson.core.json.JsonWriteContext
-
Packages that use JsonWriteContext Package Description 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.json JSON-specific parser and generator implementation classes that Jackson defines and uses. -
-
Uses of JsonWriteContext in com.fasterxml.jackson.core.base
Fields in com.fasterxml.jackson.core.base declared as JsonWriteContext Modifier and Type Field Description protected JsonWriteContextGeneratorBase. _writeContextObject that keeps track of the current contextual state of the generator.Constructors in com.fasterxml.jackson.core.base with parameters of type JsonWriteContext Constructor Description GeneratorBase(int features, ObjectCodec codec, JsonWriteContext ctxt) -
Uses of JsonWriteContext in com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as JsonWriteContext Modifier and Type Field Description protected JsonWriteContextJsonWriteContext. _childprotected JsonWriteContextJsonWriteContext. _parentParent context for this context; null for root context.Methods in com.fasterxml.jackson.core.json that return JsonWriteContext Modifier and Type Method Description JsonWriteContextJsonWriteContext. 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).JsonWriteContextJsonWriteContext. createChildArrayContext()JsonWriteContextJsonWriteContext. createChildObjectContext()static JsonWriteContextJsonWriteContext. createRootContext()Deprecated.Since 2.3; use method that takes argumentstatic JsonWriteContextJsonWriteContext. createRootContext(DupDetector dd)JsonWriteContextJsonWriteContext. getParent()protected JsonWriteContextJsonWriteContext. reset(int type)JsonWriteContextJsonWriteContext. withDupDetector(DupDetector dups)Constructors in com.fasterxml.jackson.core.json with parameters of type JsonWriteContext Constructor Description JsonWriteContext(int type, JsonWriteContext parent, DupDetector dups)
-