Uses of Class
com.github.benmanes.caffeine.cache.Caffeine
-
Packages that use Caffeine Package Description com.github.benmanes.caffeine.cache This package contains caching utilities.com.github.benmanes.caffeine.guava com.github.benmanes.caffeine.jcache -
-
Uses of Caffeine in com.github.benmanes.caffeine.cache
Methods in com.github.benmanes.caffeine.cache that return Caffeine Modifier and Type Method Description <K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. evictionListener(@NonNull RemovalListener<? super K1,? super V1> evictionListener)
Specifies a listener instance that caches should notify each time an entry is evicted.@NonNull Caffeine<K,V>
Caffeine. executor(@NonNull java.util.concurrent.Executor executor)
Specifies the executor to use when running asynchronous tasks.<K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. expireAfter(@NonNull Expiry<? super K1,? super V1> expiry)
Specifies that each entry should be automatically removed from the cache once a duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read.@NonNull Caffeine<K,V>
Caffeine. expireAfterAccess(@org.checkerframework.checker.index.qual.NonNegative long duration, @NonNull java.util.concurrent.TimeUnit unit)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read.@NonNull Caffeine<K,V>
Caffeine. expireAfterAccess(@NonNull java.time.Duration duration)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last access.@NonNull Caffeine<K,V>
Caffeine. expireAfterWrite(@org.checkerframework.checker.index.qual.NonNegative long duration, @NonNull java.util.concurrent.TimeUnit unit)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.@NonNull Caffeine<K,V>
Caffeine. expireAfterWrite(@NonNull java.time.Duration duration)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.static @NonNull Caffeine<java.lang.Object,java.lang.Object>
Caffeine. from(CaffeineSpec spec)
Constructs a newCaffeine
instance with the settings specified inspec
.static @NonNull Caffeine<java.lang.Object,java.lang.Object>
Caffeine. from(java.lang.String spec)
Constructs a newCaffeine
instance with the settings specified inspec
.@NonNull Caffeine<K,V>
Caffeine. initialCapacity(@org.checkerframework.checker.index.qual.NonNegative int initialCapacity)
Sets the minimum total size for the internal data structures.@NonNull Caffeine<K,V>
Caffeine. maximumSize(@org.checkerframework.checker.index.qual.NonNegative long maximumSize)
Specifies the maximum number of entries the cache may contain.@NonNull Caffeine<K,V>
Caffeine. maximumWeight(@org.checkerframework.checker.index.qual.NonNegative long maximumWeight)
Specifies the maximum weight of entries the cache may contain.static @NonNull Caffeine<java.lang.Object,java.lang.Object>
Caffeine. newBuilder()
Constructs a newCaffeine
instance with default settings, including strong keys, strong values, and no automatic eviction of any kind.@NonNull Caffeine<K,V>
Caffeine. recordStats()
Enables the accumulation ofCacheStats
during the operation of the cache.@NonNull Caffeine<K,V>
Caffeine. recordStats(@NonNull java.util.function.Supplier<? extends StatsCounter> statsCounterSupplier)
Enables the accumulation ofCacheStats
during the operation of the cache.(package private) Caffeine<java.lang.Object,java.lang.Object>
SerializationProxy. recreateCaffeine()
@NonNull Caffeine<K,V>
Caffeine. refreshAfterWrite(@org.checkerframework.checker.index.qual.NonNegative long duration, @NonNull java.util.concurrent.TimeUnit unit)
Specifies that active entries are eligible for automatic refresh once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.@NonNull Caffeine<K,V>
Caffeine. refreshAfterWrite(@NonNull java.time.Duration duration)
Specifies that active entries are eligible for automatic refresh once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.<K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. removalListener(@NonNull RemovalListener<? super K1,? super V1> removalListener)
Specifies a listener instance that caches should notify each time an entry is removed for any reason.@NonNull Caffeine<K,V>
Caffeine. scheduler(@NonNull Scheduler scheduler)
Specifies the scheduler to use when scheduling routine maintenance based on an expiration event.@NonNull Caffeine<K,V>
Caffeine. softValues()
Specifies that each value (not key) stored in the cache should be wrapped in aSoftReference
(by default, strong references are used).@NonNull Caffeine<K,V>
Caffeine. ticker(@NonNull Ticker ticker)
Specifies a nanosecond-precision time source for use in determining when entries should be expired or refreshed.(package private) Caffeine<java.lang.Object,java.lang.Object>
CaffeineSpec. toBuilder()
Returns aCaffeine
builder configured according to this specification.@NonNull Caffeine<K,V>
Caffeine. weakKeys()
Specifies that each key (not value) stored in the cache should be wrapped in aWeakReference
(by default, strong references are used).@NonNull Caffeine<K,V>
Caffeine. weakValues()
Specifies that each value (not key) stored in the cache should be wrapped in aWeakReference
(by default, strong references are used).<K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. weigher(@NonNull Weigher<? super K1,? super V1> weigher)
Specifies the weigher to use in determining the weight of entries.<K1 extends K,V1 extends V>
@NonNull Caffeine<K1,V1>Caffeine. writer(@NonNull CacheWriter<? super K1,? super V1> writer)
Deprecated.Scheduled for removal in version 3.0.0.Methods in com.github.benmanes.caffeine.cache with parameters of type Caffeine Modifier and Type Method Description (package private) static <K,V>
BoundedLocalCache<K,V>LocalCacheFactory. newBoundedLocalCache(Caffeine<K,V> builder, @Nullable CacheLoader<? super K,V> cacheLoader, boolean async)
Returns a cache optimized for this configuration.static <K,V>
NodeFactory<K,V>NodeFactory. newFactory(Caffeine<K,V> builder, boolean isAsync)
Returns a factory optimized for the specified features.Constructors in com.github.benmanes.caffeine.cache with parameters of type Caffeine Constructor Description AsyncLoader(AsyncCacheLoader<? super K,V> loader, Caffeine<?,?> builder)
BoundedLocalAsyncCache(Caffeine<K,V> builder)
BoundedLocalAsyncLoadingCache(Caffeine<K,V> builder, AsyncCacheLoader<? super K,V> loader)
BoundedLocalCache(Caffeine<K,V> builder, @Nullable CacheLoader<K,V> cacheLoader, boolean isAsync)
Creates an instance based on the builder's configuration.BoundedLocalLoadingCache(Caffeine<K,V> builder, CacheLoader<? super K,V> loader)
BoundedLocalManualCache(Caffeine<K,V> builder)
BoundedLocalManualCache(Caffeine<K,V> builder, @Nullable CacheLoader<? super K,V> loader)
SI(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIL(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SILWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SISWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SIWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSL(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSLWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
SSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
UnboundedLocalAsyncCache(Caffeine<K,V> builder)
UnboundedLocalAsyncLoadingCache(Caffeine<K,V> builder, AsyncCacheLoader<? super K,V> loader)
UnboundedLocalCache(Caffeine<? super K,? super V> builder, boolean async)
UnboundedLocalLoadingCache(Caffeine<K,V> builder, CacheLoader<? super K,V> loader)
UnboundedLocalManualCache(Caffeine<K,V> builder)
WI(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIL(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WILWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WISWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WIWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSL(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSLWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMS(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWA(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWAR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWAW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWAWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSMWWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSW(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
WSWR(Caffeine<K,V> builder, CacheLoader<? super K,V> cacheLoader, boolean async)
-
Uses of Caffeine in com.github.benmanes.caffeine.guava
Methods in com.github.benmanes.caffeine.guava with parameters of type Caffeine Modifier and Type Method Description static <K,V,K1 extends K,V1 extends V>
@NonNull com.google.common.cache.Cache<K1,V1>CaffeinatedGuava. build(@NonNull Caffeine<K,V> builder)
Returns a Caffeine cache wrapped in a GuavaCache
facade.static <K,V,K1 extends K,V1 extends V>
@NonNull com.google.common.cache.LoadingCache<K1,V1>CaffeinatedGuava. build(@NonNull Caffeine<K,V> builder, @NonNull CacheLoader<? super K1,V1> loader)
Returns a Caffeine cache wrapped in a GuavaLoadingCache
facade.static <K,V,K1 extends K,V1 extends V>
@NonNull com.google.common.cache.LoadingCache<K1,V1>CaffeinatedGuava. build(@NonNull Caffeine<K,V> builder, @NonNull com.google.common.cache.CacheLoader<? super K1,V1> loader)
Returns a Caffeine cache wrapped in a GuavaLoadingCache
facade. -
Uses of Caffeine in com.github.benmanes.caffeine.jcache
Fields in com.github.benmanes.caffeine.jcache declared as Caffeine Modifier and Type Field Description (package private) Caffeine<java.lang.Object,java.lang.Object>
CacheFactory.Builder. caffeine
-