Package | Description |
---|---|
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 |
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.
|
Modifier and Type | Field and Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
ClassIntrospector<? extends BeanDescription> |
MapperConfig.getClassIntrospector() |
ClassIntrospector<? extends BeanDescription> |
MapperConfig.Base.getClassIntrospector() |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Class and Description |
---|---|
class |
BasicClassIntrospector |