Uses of Interface
com.fasterxml.jackson.databind.util.LookupCache
-
Packages that use LookupCache Package Description com.fasterxml.jackson.databind.type Package that contains concrete implementations ofJavaType, as well as the factory (TypeFactory) for constructing instances from various input data types (likeClass,Type) and programmatically (for structured types, arrays,Lists andMaps).com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
Uses of LookupCache in com.fasterxml.jackson.databind.type
Fields in com.fasterxml.jackson.databind.type declared as LookupCache Modifier and Type Field Description protected LookupCache<java.lang.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 LookupCache Modifier and Type Method Description TypeFactoryTypeFactory. withCache(LookupCache<java.lang.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 LookupCache Constructor Description TypeFactory(LookupCache<java.lang.Object,JavaType> typeCache)TypeFactory(LookupCache<java.lang.Object,JavaType> typeCache, TypeParser p, TypeModifier[] mods, java.lang.ClassLoader classLoader) -
Uses of LookupCache in com.fasterxml.jackson.databind.util
Classes in com.fasterxml.jackson.databind.util that implement LookupCache Modifier and Type Class Description classLRUMap<K,V>Helper for simple bounded maps used for reusing lookup values.
-