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.
|
com.fasterxml.jackson.core.json.async |
Non-blocking ("async") JSON parser implementation.
|
com.fasterxml.jackson.databind.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
com.fasterxml.jackson.databind.util |
Utility classes for Mapper package.
|
Modifier and Type | Class and Description |
---|---|
class |
ParserBase
Intermediate base class used by all Jackson
JsonParser
implementations. |
Modifier and Type | Class and Description |
---|---|
class |
ReaderBasedJsonParser
This is a concrete implementation of
JsonParser , which is
based on a Reader to handle low-level character
conversion tasks. |
class |
UTF8DataInputJsonParser
This is a concrete implementation of
JsonParser , which is
based on a DataInput as the input source. |
class |
UTF8StreamJsonParser
This is a concrete implementation of
JsonParser , which is
based on a InputStream as the input source. |
Modifier and Type | Class and Description |
---|---|
class |
NonBlockingJsonParser |
class |
NonBlockingJsonParserBase
Intermediate base class for non-blocking JSON parsers.
|
Modifier and Type | Class and 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 and Description |
---|---|
protected static class |
TokenBuffer.Parser |
Copyright © 2019 JBoss by Red Hat. All rights reserved.