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.format |
Package that contains interfaces needed for dynamic, pluggable
format (auto)detection; as well as basic utility classes for
simple format detection functionality.
|
com.fasterxml.jackson.core.json |
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.databind.deser |
Contains implementation classes of deserialization part of
data binding.
|
Modifier and Type | Method and Description |
---|---|
MatchStrength |
JsonFactory.hasFormat(InputAccessor acc)
Convenience method for trying to determine whether input via given accessor
is of format type supported by this factory.
|
protected MatchStrength |
JsonFactory.hasJSONFormat(InputAccessor acc)
Helper method that can be called to determine if content accessed
using given accessor seems to be JSON content.
|
Modifier and Type | Class and Description |
---|---|
static class |
InputAccessor.Std
Basic implementation that reads data from given
InputStream and buffers it as necessary. |
Modifier and Type | Method and Description |
---|---|
static MatchStrength |
ByteSourceJsonBootstrapper.hasJSONFormat(InputAccessor acc)
Current implementation is not as thorough as other functionality
(
ByteSourceJsonBootstrapper );
supports UTF-8, for example. |
Modifier and Type | Method and Description |
---|---|
MatchStrength |
MappingJsonFactory.hasFormat(InputAccessor acc)
Sub-classes need to override this method
|
Modifier and Type | Class and Description |
---|---|
protected class |
DataFormatReaders.AccessorForReader
We need sub-class here as well, to be able to access efficiently.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.