| 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.deser |
Contains implementation classes of deserialization part of
data binding.
|
| com.fasterxml.jackson.databind.ser |
Contains implementation classes of serialization part of
data binding.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectMapper |
ObjectMapper.setCacheProvider(CacheProvider cacheProvider)
Method for specifying
CacheProvider instance, to provide Cache instances to be used in components downstream. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultCacheProvider
The default implementation of
CacheProvider. |
| Modifier and Type | Field and Description |
|---|---|
protected CacheProvider |
BaseSettings._cacheProvider
Used to provide custom cache implementation in downstream components.
|
| Modifier and Type | Method and Description |
|---|---|
static CacheProvider |
DefaultCacheProvider.defaultInstance() |
CacheProvider |
MapperConfig.getCacheProvider() |
CacheProvider |
BaseSettings.getCacheProvider() |
| Modifier and Type | Method and Description |
|---|---|
B |
MapperBuilder.cacheProvider(CacheProvider cacheProvider) |
T |
MapperConfigBase.with(CacheProvider provider) |
BaseSettings |
BaseSettings.with(CacheProvider cacheProvider)
Fluent factory for constructing a new instance with provided
CacheProvider. |
| Constructor and Description |
|---|
BaseSettings(ClassIntrospector ci,
AnnotationIntrospector ai,
PropertyNamingStrategy pns,
TypeFactory tf,
TypeResolverBuilder<?> typer,
DateFormat dateFormat,
HandlerInstantiator hi,
Locale locale,
TimeZone tz,
Base64Variant defaultBase64,
PolymorphicTypeValidator ptv,
AccessorNamingStrategy.Provider accNaming,
CacheProvider cacheProvider) |
| Modifier and Type | Method and Description |
|---|---|
abstract DefaultDeserializationContext |
DefaultDeserializationContext.withCaches(CacheProvider cacheProvider)
Fluent factory method used for constructing a new instance with cache instances provided by
CacheProvider. |
DefaultDeserializationContext |
DefaultDeserializationContext.Impl.withCaches(CacheProvider cp) |
| Constructor and Description |
|---|
DefaultDeserializationContext(DefaultDeserializationContext src,
CacheProvider cp) |
| Modifier and Type | Method and Description |
|---|---|
abstract DefaultSerializerProvider |
DefaultSerializerProvider.withCaches(CacheProvider cacheProvider)
Fluent factory method used for constructing a new instance with cache instances provided by
CacheProvider. |
DefaultSerializerProvider |
DefaultSerializerProvider.Impl.withCaches(CacheProvider cp) |
| Constructor and Description |
|---|
DefaultSerializerProvider(DefaultSerializerProvider src,
CacheProvider cp) |
Impl(DefaultSerializerProvider.Impl src,
CacheProvider cp) |
Copyright © 2008–2025 FasterXML. All rights reserved.