| 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 JsonReadContext | ParserBase. _parsingContextInformation about parser context, context in which
 the next token is to be parsed (root, array, object). | 
| Modifier and Type | Method and Description | 
|---|---|
| JsonReadContext | ParserBase. getParsingContext() | 
| Modifier and Type | Field and Description | 
|---|---|
| protected JsonReadContext | JsonReadContext. _child | 
| protected JsonReadContext | JsonReadContext. _parentParent context for this context; null for root context. | 
| Modifier and Type | Method and Description | 
|---|---|
| JsonReadContext | JsonReadContext. clearAndGetParent()Method that can be used to both clear the accumulated references
 (specifically value set with  setCurrentValue(Object))
 that should not be retained, and returns parent (as wouldgetParent()do). | 
| JsonReadContext | JsonReadContext. createChildArrayContext(int lineNr,
                       int colNr) | 
| JsonReadContext | JsonReadContext. createChildObjectContext(int lineNr,
                        int colNr) | 
| static JsonReadContext | JsonReadContext. createRootContext(DupDetector dups) | 
| static JsonReadContext | JsonReadContext. createRootContext(int lineNr,
                 int colNr,
                 DupDetector dups) | 
| JsonReadContext | JsonReadContext. getParent() | 
| JsonReadContext | JsonReadContext. withDupDetector(DupDetector dups) | 
| Constructor and Description | 
|---|
| JsonReadContext(JsonReadContext parent,
               DupDetector dups,
               int type,
               int lineNr,
               int colNr) | 
Copyright © 2008-2016 FasterXML. All Rights Reserved.