Uses of Class
com.fasterxml.jackson.core.json.JsonWriteContext

Packages that use JsonWriteContext
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
protected  JsonWriteContext GeneratorBase._writeContext
          Object that keeps track of the current contextual state of the generator.
 

Methods in com.fasterxml.jackson.core.base that return JsonWriteContext
 JsonWriteContext GeneratorBase.getOutputContext()
          Note: co-variant return type.
 

Constructors in com.fasterxml.jackson.core.base with parameters of type JsonWriteContext
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
protected  JsonWriteContext JsonWriteContext._child
           
protected  JsonWriteContext JsonWriteContext._parent
          Parent context for this context; null for root context.
 

Methods in com.fasterxml.jackson.core.json that return JsonWriteContext
 JsonWriteContext JsonWriteContext.clearAndGetParent()
          Method that can be used to both clear the accumulated references (specifically value set with setCurrentValue(Object)) that should not be retained, and returns parent (as would getParent() do).
 JsonWriteContext JsonWriteContext.createChildArrayContext()
           
 JsonWriteContext JsonWriteContext.createChildObjectContext()
           
static JsonWriteContext JsonWriteContext.createRootContext()
          Deprecated. Since 2.3; use method that takes argument
static JsonWriteContext JsonWriteContext.createRootContext(DupDetector dd)
           
 JsonWriteContext JsonWriteContext.getParent()
           
protected  JsonWriteContext JsonWriteContext.reset(int type)
           
 JsonWriteContext JsonWriteContext.withDupDetector(DupDetector dups)
           
 

Constructors in com.fasterxml.jackson.core.json with parameters of type JsonWriteContext
JsonWriteContext(int type, JsonWriteContext parent, DupDetector dups)
           
 



Copyright © 2008-2016 FasterXML. All Rights Reserved.