Package | Description |
---|---|
org.codehaus.jackson |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonParser )
instances. |
org.codehaus.jackson.impl |
Parser and generator implementation classes that Jackson
defines and uses.
|
org.codehaus.jackson.sym |
Internal implementation classes for efficient handling of
of symbols in JSON (field names in Objects)
|
Modifier and Type | Field | Description |
---|---|---|
protected CharsToNameCanonicalizer |
JsonFactory._rootCharSymbols |
Each factory comes equipped with a shared root symbol table.
|
Modifier and Type | Field | Description |
---|---|---|
protected CharsToNameCanonicalizer |
ReaderBasedParser._symbols |
Modifier and Type | Method | Description |
---|---|---|
JsonParser |
ByteSourceBootstrapper.constructParser(int features,
ObjectCodec codec,
BytesToNameCanonicalizer rootByteSymbols,
CharsToNameCanonicalizer rootCharSymbols) |
Constructor | Description |
---|---|
ReaderBasedParser(IOContext ctxt,
int features,
java.io.Reader r,
ObjectCodec codec,
CharsToNameCanonicalizer st) |
Modifier and Type | Field | Description |
---|---|---|
protected CharsToNameCanonicalizer |
CharsToNameCanonicalizer._parent |
Sharing of learnt symbols is done by optional linking of symbol
table instances with their parents.
|
Modifier and Type | Method | Description |
---|---|---|
static CharsToNameCanonicalizer |
CharsToNameCanonicalizer.createRoot() |
Method called to create root canonicalizer for a
JsonFactory
instance. |
CharsToNameCanonicalizer |
CharsToNameCanonicalizer.makeChild(boolean canonicalize,
boolean intern) |
"Factory" method; will create a new child instance of this symbol
table.
|