程序包 | 说明 |
---|---|
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.introspect |
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
|
限定符和类型 | 字段和说明 |
---|---|
protected ClassIntrospector<? extends BeanDescription> |
MapperConfig.Base._classIntrospector
Introspector used to figure out Bean properties needed for bean serialization
and deserialization.
|
protected static ClassIntrospector<? extends BeanDescription> |
ObjectMapper.DEFAULT_INTROSPECTOR |
限定符和类型 | 方法和说明 |
---|---|
ClassIntrospector<? extends BeanDescription> |
MapperConfig.getClassIntrospector() |
ClassIntrospector<? extends BeanDescription> |
MapperConfig.Base.getClassIntrospector() |
限定符和类型 | 方法和说明 |
---|---|
SerializationConfig |
SerializationConfig.withClassIntrospector(ClassIntrospector<? extends BeanDescription> ci) |
abstract T |
MapperConfig.withClassIntrospector(ClassIntrospector<? extends BeanDescription> ci)
Method for constructing and returning a new instance with different
ClassIntrospector
to use. |
MapperConfig.Base |
MapperConfig.Base.withClassIntrospector(ClassIntrospector<? extends BeanDescription> ci) |
DeserializationConfig |
DeserializationConfig.withClassIntrospector(ClassIntrospector<? extends BeanDescription> ci) |
限定符和类型 | 类和说明 |
---|---|
class |
BasicClassIntrospector |