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

Packages that use JsonReadContext
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 JsonReadContext in com.fasterxml.jackson.core.base
 

Fields in com.fasterxml.jackson.core.base declared as JsonReadContext
protected  JsonReadContext ParserBase._parsingContext
          Information 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
 JsonReadContext ParserBase.getParsingContext()
           
 

Uses of JsonReadContext in com.fasterxml.jackson.core.json
 

Fields in com.fasterxml.jackson.core.json declared as JsonReadContext
protected  JsonReadContext JsonReadContext._child
           
protected  JsonReadContext JsonReadContext._parent
           
 

Methods in com.fasterxml.jackson.core.json that return JsonReadContext
 JsonReadContext JsonReadContext.createChildArrayContext(int lineNr, int colNr)
           
 JsonReadContext JsonReadContext.createChildObjectContext(int lineNr, int colNr)
           
static JsonReadContext JsonReadContext.createRootContext()
           
static JsonReadContext JsonReadContext.createRootContext(int lineNr, int colNr)
           
 JsonReadContext JsonReadContext.getParent()
           
 

Constructors in com.fasterxml.jackson.core.json with parameters of type JsonReadContext
JsonReadContext(JsonReadContext parent, int type, int lineNr, int colNr)
           
 



Copyright © 2012 FasterXML. All Rights Reserved.