程序包 | 说明 |
---|---|
org.codehaus.jackson |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonParser )
instances. |
org.codehaus.jackson.impl |
Parser and generator implementation classes that Jackson
defines and uses.
|
org.codehaus.jackson.jaxrs |
Jackson-based JAX-RS provider that can automatically
serialize and deserialize resources for
JSON content type (MediaType).
|
org.codehaus.jackson.map |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser
Object mapper will convert Json content to ant from
basic Java wrapper types (Integer, Boolean, Double),
Collection types (List, Map), Java Beans,
Strings and nulls. |
org.codehaus.jackson.map.module |
Package that contains classes and interfaces to help implement
custom extension
Module s
(which are registered using
ObjectMapper.registerModule(org.codehaus.jackson.map.Module) . |
org.codehaus.jackson.mrbean |
Package that implements "interface materializer" functionality, whereby
abstract classes and interfaces can be used as-is, and framework constructs
implementations as needed.
|
org.codehaus.jackson.util |
Utility classes used by Jackson Core functionality.
|
org.codehaus.jackson.xc |
Package that contains XML Compatibility functionality for Jackson, such
as handlers for JAXB annotations
|
限定符和类型 | 方法和说明 |
---|---|
static Version |
Version.unknownVersion()
Method returns canonical "not known" version, which is used as version
in cases where actual version information is not known (instead of null).
|
Version |
Versioned.version()
Method called to detect version of the component that implements this interface;
returned version should never be null, but may return specific "not available"
instance (see
Version for details). |
Version |
JsonParser.version() |
Version |
JsonGenerator.version() |
Version |
JsonFactory.version() |
限定符和类型 | 方法和说明 |
---|---|
int |
Version.compareTo(Version other) |
限定符和类型 | 方法和说明 |
---|---|
Version |
JsonParserBase.version() |
Version |
JsonGeneratorBase.version() |
限定符和类型 | 方法和说明 |
---|---|
Version |
JacksonJsonProvider.version()
Method that will return version information stored in and read from jar
that contains this class.
|
限定符和类型 | 方法和说明 |
---|---|
Version |
Module.SetupContext.getMapperVersion()
Method that returns version information about
ObjectMapper
that implements this context. |
Version |
ObjectWriter.version()
Method that will return version information stored in and read from jar
that contains this class.
|
Version |
ObjectReader.version()
Method that will return version information stored in and read from jar
that contains this class.
|
Version |
ObjectMapper.version()
Method that will return version information stored in and read from jar
that contains this class.
|
abstract Version |
Module.version()
Method that returns version of this module.
|
限定符和类型 | 字段和说明 |
---|---|
protected Version |
SimpleModule._version |
限定符和类型 | 方法和说明 |
---|---|
Version |
SimpleModule.version() |
构造器和说明 |
---|
SimpleModule(String name,
Version version) |
限定符和类型 | 方法和说明 |
---|---|
Version |
MrBeanModule.version() |
Version |
AbstractTypeMaterializer.version()
Method that will return version information stored in and read from jar
that contains this class.
|
限定符和类型 | 方法和说明 |
---|---|
static Version |
VersionUtil.parseVersion(String versionStr) |
Version |
JsonParserDelegate.version() |
Version |
JsonGeneratorDelegate.version() |
static Version |
VersionUtil.versionFor(Class<?> cls)
Helper method that will try to load version information for specified
class.
|
限定符和类型 | 方法和说明 |
---|---|
Version |
JaxbAnnotationIntrospector.version()
Method that will return version information stored in and read from jar
that contains this class.
|