Uses of Class
com.fasterxml.jackson.core.JsonStreamContext
Packages that use JsonStreamContext
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonGenerator
)
instances.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.
Utility classes used by Jackson Core functionality.
-
Uses of JsonStreamContext in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonStreamContextModifier and TypeMethodDescriptionabstract JsonStreamContext
JsonGenerator.getOutputContext()
Accessor for context object that provides information about low-level logical position withing output token stream.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.Methods in com.fasterxml.jackson.core with parameters of type JsonStreamContextModifier and TypeMethodDescriptionstatic JsonPointer
JsonPointer.forPath
(JsonStreamContext context, boolean includeRoot) Factory method that will construct a pointer instance that describes path to location givenJsonStreamContext
points to.Constructors in com.fasterxml.jackson.core with parameters of type JsonStreamContextModifierConstructorDescriptionprotected
Copy constructor used by sub-classes for creating copies for buffering. -
Uses of JsonStreamContext in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return JsonStreamContextModifier and TypeMethodDescriptionGeneratorBase.getOutputContext()
Note: type was co-variant until Jackson 2.7; reverted back to base type in 2.8 to allow for overriding by subtypes that use custom context type.abstract JsonStreamContext
ParserMinimalBase.getParsingContext()
-
Uses of JsonStreamContext in com.fasterxml.jackson.core.filter
Subclasses of JsonStreamContext in com.fasterxml.jackson.core.filterModifier and TypeClassDescriptionclass
Alternative variant ofJsonStreamContext
, used when filtering content being read or written (based onTokenFilter
).Methods in com.fasterxml.jackson.core.filter that return JsonStreamContextModifier and TypeMethodDescriptionprotected JsonStreamContext
FilteringParserDelegate._filterContext()
FilteringGeneratorDelegate.getFilterContext()
FilteringGeneratorDelegate.getOutputContext()
FilteringParserDelegate.getParsingContext()
-
Uses of JsonStreamContext in com.fasterxml.jackson.core.json
Subclasses of JsonStreamContext in com.fasterxml.jackson.core.jsonModifier and TypeClassDescriptionfinal class
Extension ofJsonStreamContext
, which implements core methods needed, and also exposes more complete API to parser implementation classes.class
Extension ofJsonStreamContext
, 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 JsonStreamContextModifier and TypeMethodDescriptionJsonGeneratorDelegate.getOutputContext()
JsonParserDelegate.getParsingContext()