Uses of Class
com.fasterxml.jackson.core.JsonStreamContext

Packages that use JsonStreamContext
com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing JSON parser (JsonParser) and generator (JsonParser) instances. 
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. 
com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. 
 

Uses of JsonStreamContext in com.fasterxml.jackson.core
 

Methods in com.fasterxml.jackson.core that return JsonStreamContext
abstract  JsonStreamContext JsonGenerator.getOutputContext()
           
abstract  JsonStreamContext JsonStreamContext.getParent()
          Accessor for finding parent context of this context; will return null for root context.
abstract  JsonStreamContext JsonParser.getParsingContext()
          Method that can be used to access current parsing context reader is in.
 

Uses of JsonStreamContext in com.fasterxml.jackson.core.base
 

Methods in com.fasterxml.jackson.core.base that return JsonStreamContext
abstract  JsonStreamContext ParserMinimalBase.getParsingContext()
           
 

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

Subclasses of JsonStreamContext in com.fasterxml.jackson.core.json
 class JsonReadContext
          Extension of JsonStreamContext, which implements core methods needed, and also exposes more complete API to parser implementation classes.
 class JsonWriteContext
          Extension of JsonStreamContext, which implements core methods needed, and also exposes more complete API to generator implementation classes.
 

Uses of JsonStreamContext in com.fasterxml.jackson.core.util
 

Methods in com.fasterxml.jackson.core.util that return JsonStreamContext
 JsonStreamContext JsonGeneratorDelegate.getOutputContext()
           
 JsonStreamContext JsonParserDelegate.getParsingContext()
           
 



Copyright © 2012 FasterXML. All Rights Reserved.