Package | Description |
---|---|
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.
|
Modifier and Type | Field and Description |
---|---|
protected JsonWriteContext |
GeneratorBase._writeContext
Object that keeps track of the current contextual state
of the generator.
|
Modifier and Type | Method and Description |
---|---|
JsonWriteContext |
GeneratorBase.getOutputContext()
Note: co-variant return type.
|
Modifier and Type | Field and Description |
---|---|
protected JsonWriteContext |
JsonWriteContext._child |
protected JsonWriteContext |
JsonWriteContext._parent
Parent context for this context; null for root context.
|
Modifier and Type | Method and Description |
---|---|
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) |
Constructor and Description |
---|
JsonWriteContext(int type,
JsonWriteContext parent,
DupDetector dups) |
Copyright © 2014 FasterXML. All Rights Reserved.