Uses of Class
com.fasterxml.jackson.core.json.JsonWriteContext
Packages that use JsonWriteContext
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 JsonWriteContext in com.fasterxml.jackson.core.base
Fields in com.fasterxml.jackson.core.base declared as JsonWriteContextModifier and TypeFieldDescriptionprotected JsonWriteContextGeneratorBase._writeContextObject that keeps track of the current contextual state of the generator.Constructors in com.fasterxml.jackson.core.base with parameters of type JsonWriteContextModifierConstructorDescriptionprotectedGeneratorBase(int features, ObjectCodec codec, IOContext ioContext, JsonWriteContext jsonWriteContext) protectedGeneratorBase(int features, ObjectCodec codec, JsonWriteContext ctxt) Deprecated. -
Uses of JsonWriteContext in com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as JsonWriteContextModifier and TypeFieldDescriptionprotected JsonWriteContextJsonWriteContext._childprotected final JsonWriteContextJsonWriteContext._parentParent context for this context; null for root context.Methods in com.fasterxml.jackson.core.json that return JsonWriteContextModifier and TypeMethodDescriptionJsonWriteContext.clearAndGetParent()Method that can be used to both clear the accumulated references (specifically value set withJsonWriteContext.setCurrentValue(Object)) that should not be retained, and returns parent (as wouldJsonWriteContext.getParent()do).JsonWriteContext.createChildArrayContext()JsonWriteContext.createChildArrayContext(Object currValue) JsonWriteContext.createChildObjectContext()JsonWriteContext.createChildObjectContext(Object currValue) static JsonWriteContextJsonWriteContext.createRootContext()Deprecated.Since 2.3; use method that takes argumentstatic JsonWriteContextJsonWriteContext.createRootContext(DupDetector dd) final JsonWriteContextJsonWriteContext.getParent()JsonWriteContext.reset(int type) Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.JsonWriteContext.withDupDetector(DupDetector dups) Constructors in com.fasterxml.jackson.core.json with parameters of type JsonWriteContextModifierConstructorDescriptionprotectedJsonWriteContext(int type, JsonWriteContext parent, DupDetector dups) protectedJsonWriteContext(int type, JsonWriteContext parent, DupDetector dups, Object currValue)