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.sym |
Internal implementation classes for efficient handling of
of symbols in JSON (field names in Objects)
|
Modifier and Type | Field and Description |
---|---|
protected BytesToNameCanonicalizer |
JsonFactory._rootByteSymbols
Deprecated.
Since 2.6.0, only use
JsonFactory._byteSymbolCanonicalizer |
Modifier and Type | Field and Description |
---|---|
protected BytesToNameCanonicalizer |
BytesToNameCanonicalizer._parent
Deprecated.
Reference to the root symbol table, for child tables, so
that they can merge table information back as necessary.
|
Modifier and Type | Method and Description |
---|---|
static BytesToNameCanonicalizer |
BytesToNameCanonicalizer.createRoot()
Deprecated.
Factory method to call to create a symbol table instance with a
randomized seed value.
|
protected static BytesToNameCanonicalizer |
BytesToNameCanonicalizer.createRoot(int seed)
Deprecated.
Factory method that should only be called from unit tests, where seed
value should remain the same.
|
BytesToNameCanonicalizer |
BytesToNameCanonicalizer.makeChild(boolean canonicalize,
boolean intern)
Deprecated.
|
BytesToNameCanonicalizer |
BytesToNameCanonicalizer.makeChild(int flags)
Deprecated.
Factory method used to create actual symbol table instance to
use for parsing.
|
Copyright © 2014-2015 FasterXML. All Rights Reserved.