Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
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 | Method and Description |
---|---|
protected ClassIntrospector |
ObjectMapper.defaultClassIntrospector()
Overridable helper method used to construct default
ClassIntrospector
to use. |
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,
com.fasterxml.jackson.core.Base64Variant defaultBase64) |
Modifier and Type | Class and Description |
---|---|
class |
BasicClassIntrospector |
Copyright © 2014–2015 FasterXML. All rights reserved.