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._typeCacheSince 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 newTypeFactorywith identical settings except for different cache; most likely one with bigger maximum size.Constructors in com.fasterxml.jackson.databind.type with parameters of type LookupCacheModifierConstructorDescriptionprotectedTypeFactory(LookupCache<Object, JavaType> typeCache) protectedTypeFactory(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 TypeClassDescriptionclassLRUMap<K,V> Helper for simple bounded maps used for reusing lookup values.