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 ObjectMapperObjectMapper. setCacheProvider(CacheProvider cacheProvider)Method for specifyingCacheProviderinstance, 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 classDefaultCacheProviderThe default implementation ofCacheProvider.Fields in com.fasterxml.jackson.databind.cfg declared as CacheProvider Modifier and Type Field Description protected CacheProviderBaseSettings. _cacheProviderUsed to provide custom cache implementation in downstream components.Methods in com.fasterxml.jackson.databind.cfg that return CacheProvider Modifier and Type Method Description static CacheProviderDefaultCacheProvider. defaultInstance()CacheProviderBaseSettings. getCacheProvider()CacheProviderMapperConfig. getCacheProvider()Methods in com.fasterxml.jackson.databind.cfg with parameters of type CacheProvider Modifier and Type Method Description BMapperBuilder. cacheProvider(CacheProvider cacheProvider)BaseSettingsBaseSettings. with(CacheProvider cacheProvider)Fluent factory for constructing a new instance with providedCacheProvider.TMapperConfigBase. 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 DefaultDeserializationContextDefaultDeserializationContext.Impl. withCaches(CacheProvider cp)abstract DefaultDeserializationContextDefaultDeserializationContext. 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 DefaultSerializerProviderDefaultSerializerProvider.Impl. withCaches(CacheProvider cp)abstract DefaultSerializerProviderDefaultSerializerProvider. 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)
-