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