Uses of Interface
com.fasterxml.jackson.databind.cfg.CacheProvider
-
Packages that use CacheProvider 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. -
-
Uses of CacheProvider in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type CacheProvider Modifier and Type Method Description ObjectMapper
ObjectMapper. setCacheProvider(CacheProvider cacheProvider)
Method for specifyingCacheProvider
instance, to provide Cache instances to be used in components downstream. -
Uses of CacheProvider in com.fasterxml.jackson.databind.cfg
Classes in com.fasterxml.jackson.databind.cfg that implement CacheProvider Modifier and Type Class Description class
DefaultCacheProvider
The default implementation ofCacheProvider
.Fields in com.fasterxml.jackson.databind.cfg declared as CacheProvider Modifier and Type Field Description protected CacheProvider
BaseSettings. _cacheProvider
Used to provide custom cache implementation in downstream components.Methods in com.fasterxml.jackson.databind.cfg that return CacheProvider Modifier and Type Method Description static CacheProvider
DefaultCacheProvider. defaultInstance()
CacheProvider
BaseSettings. getCacheProvider()
CacheProvider
MapperConfig. getCacheProvider()
Methods in com.fasterxml.jackson.databind.cfg with parameters of type CacheProvider Modifier and Type Method Description B
MapperBuilder. cacheProvider(CacheProvider cacheProvider)
BaseSettings
BaseSettings. with(CacheProvider cacheProvider)
Fluent factory for constructing a new instance with providedCacheProvider
.T
MapperConfigBase. with(CacheProvider provider)
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type CacheProvider Constructor Description BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, java.text.DateFormat dateFormat, HandlerInstantiator hi, java.util.Locale locale, java.util.TimeZone tz, com.fasterxml.jackson.core.Base64Variant defaultBase64, PolymorphicTypeValidator ptv, AccessorNamingStrategy.Provider accNaming, CacheProvider cacheProvider)
-
Uses of CacheProvider in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type CacheProvider Modifier and Type Method Description DefaultDeserializationContext
DefaultDeserializationContext.Impl. withCaches(CacheProvider cp)
abstract DefaultDeserializationContext
DefaultDeserializationContext. withCaches(CacheProvider cacheProvider)
Fluent factory method used for constructing a new instance with cache instances provided byCacheProvider
.Constructors in com.fasterxml.jackson.databind.deser with parameters of type CacheProvider Constructor Description DefaultDeserializationContext(DefaultDeserializationContext src, CacheProvider cp)
-
Uses of CacheProvider in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type CacheProvider Modifier and Type Method Description DefaultSerializerProvider
DefaultSerializerProvider.Impl. withCaches(CacheProvider cp)
abstract DefaultSerializerProvider
DefaultSerializerProvider. withCaches(CacheProvider cacheProvider)
Fluent factory method used for constructing a new instance with cache instances provided byCacheProvider
.Constructors in com.fasterxml.jackson.databind.ser with parameters of type CacheProvider Constructor Description DefaultSerializerProvider(DefaultSerializerProvider src, CacheProvider cp)
Impl(DefaultSerializerProvider.Impl src, CacheProvider cp)
-