| Package | Description |
|---|---|
| com.fasterxml.jackson.databind |
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 |
| com.fasterxml.jackson.databind.cfg |
Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind). |
| com.fasterxml.jackson.databind.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 static ClassIntrospector |
ObjectMapper.DEFAULT_INTROSPECTOR |
| Modifier and Type | Method and Description |
|---|---|
void |
Module.SetupContext.setClassIntrospector(ClassIntrospector ci)
Method for replacing the default class introspector with a derived class that
overrides specific behavior.
|
SerializationConfig |
SerializationConfig.with(ClassIntrospector ci) |
DeserializationConfig |
DeserializationConfig.with(ClassIntrospector ci) |
| Modifier and Type | Field and Description |
|---|---|
protected ClassIntrospector |
BaseSettings._classIntrospector
Introspector used to figure out Bean properties needed for bean serialization
and deserialization.
|
| Modifier and Type | Method and Description |
|---|---|
ClassIntrospector |
MapperConfig.getClassIntrospector() |
ClassIntrospector |
BaseSettings.getClassIntrospector() |
| Modifier and Type | Method and Description |
|---|---|
abstract T |
MapperConfigBase.with(ClassIntrospector ci)
Method for constructing and returning a new instance with different
ClassIntrospector
to use. |
BaseSettings |
BaseSettings.withClassIntrospector(ClassIntrospector ci) |
| Constructor and Description |
|---|
BaseSettings(ClassIntrospector ci,
AnnotationIntrospector ai,
VisibilityChecker<?> vc,
PropertyNamingStrategy pns,
TypeFactory tf,
TypeResolverBuilder<?> typer,
DateFormat dateFormat,
HandlerInstantiator hi,
Locale locale,
TimeZone tz,
Base64Variant defaultBase64) |
| Modifier and Type | Class and Description |
|---|---|
class |
BasicClassIntrospector |
Copyright © 2012-2013 FasterXML. All Rights Reserved.