Package | Description |
---|---|
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
(JsonGenerator )
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.filter | |
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
JsonStreamContext |
GeneratorBase.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() |
Modifier and Type | Class and Description |
---|---|
class |
TokenFilterContext
Alternative variant of
JsonStreamContext , used when filtering
content being read or written (based on TokenFilter ). |
Modifier and Type | Method and Description |
---|---|
protected JsonStreamContext |
FilteringParserDelegate._filterContext() |
JsonStreamContext |
FilteringGeneratorDelegate.getFilterContext() |
JsonStreamContext |
FilteringGeneratorDelegate.getOutputContext() |
JsonStreamContext |
FilteringParserDelegate.getParsingContext() |
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
JsonStreamContext |
JsonGeneratorDelegate.getOutputContext() |
JsonStreamContext |
JsonParserDelegate.getParsingContext() |
Copyright © 2008-2016 FasterXML. All Rights Reserved.