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.json |
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
|
Modifier and Type | Method and Description |
---|---|
abstract Class<? extends FormatFeature> |
TokenStreamFactory.getFormatReadFeatureType()
Method for accessing kind of
FormatFeature that a parser
JsonParser produced by this factory would accept, if any;
null returned if none. |
Class<? extends FormatFeature> |
JsonFactory.getFormatReadFeatureType() |
abstract Class<? extends FormatFeature> |
TokenStreamFactory.getFormatWriteFeatureType()
Method for accessing kind of
FormatFeature that a parser
JsonGenerator produced by this factory would accept, if any;
null returned if none. |
Class<? extends FormatFeature> |
JsonFactory.getFormatWriteFeatureType() |
Modifier and Type | Class and Description |
---|---|
class |
JsonReadFeature
Token reader (parser) features specific to JSON backend.
|
class |
JsonWriteFeature
Token writer features specific to JSON backend.
|
Copyright © 2008–2019 FasterXML. All rights reserved.