Uses of Interface
com.fasterxml.jackson.databind.util.LookupCache
Packages that use LookupCache
Package
Description
Utility classes for Mapper package.
-
Uses of LookupCache in com.fasterxml.jackson.databind.type
Fields in com.fasterxml.jackson.databind.type declared as LookupCacheModifier and TypeFieldDescriptionprotected final LookupCache
<Object, JavaType> TypeFactory._typeCache
Since type resolution can be expensive (specifically when resolving actual generic types), we will use small cache to avoid repetitive resolution of core typesMethods in com.fasterxml.jackson.databind.type with parameters of type LookupCacheModifier and TypeMethodDescriptionTypeFactory.withCache
(LookupCache<Object, JavaType> cache) Mutant factory method that will construct newTypeFactory
with identical settings except for different cache; most likely one with bigger maximum size.Constructors in com.fasterxml.jackson.databind.type with parameters of type LookupCacheModifierConstructorDescriptionprotected
TypeFactory
(LookupCache<Object, JavaType> typeCache) protected
TypeFactory
(LookupCache<Object, JavaType> typeCache, TypeParser p, TypeModifier[] mods, ClassLoader classLoader) -
Uses of LookupCache in com.fasterxml.jackson.databind.util
Classes in com.fasterxml.jackson.databind.util that implement LookupCacheModifier and TypeClassDescriptionclass
LRUMap<K,
V> Helper for simple bounded maps used for reusing lookup values.