Package | Description |
---|---|
org.codehaus.jackson.impl |
Parser and generator implementation classes that Jackson
defines and uses.
|
org.codehaus.jackson.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
org.codehaus.jackson.util |
Utility classes used by Jackson Core functionality.
|
Modifier and Type | Class | Description |
---|---|---|
class |
JsonNumericParserBase |
Deprecated.
Since 1.9.0: functionality demoted down to JsonParserBase
|
class |
JsonParserBase |
Intermediate base class used by all Jackson
JsonParser
implementations. |
class |
ReaderBasedParser |
This is a concrete implementation of
JsonParser , which is
based on a Reader to handle low-level character
conversion tasks. |
class |
ReaderBasedParserBase |
Deprecated.
Since 1.9 sub-classes should just include code
from here as is.
|
class |
StreamBasedParserBase |
Deprecated.
Since 1.9, sub-classes should just embed code from here
|
class |
Utf8StreamParser |
This is a concrete implementation of
JsonParser , which is
based on a InputStream as the input source. |
Modifier and Type | Class | Description |
---|---|---|
class |
TreeTraversingParser |
Facade over
JsonNode that implements JsonParser to allow
accessing contents of JSON tree in alternate form (stream of tokens). |
Modifier and Type | Class | Description |
---|---|---|
protected static class |
TokenBuffer.Parser |