Package com.github.benmanes.caffeine.cache
This package contains caching utilities.
The core interface used to represent caches is Cache
.
A cache may be specialized as either a LoadingCache
or AsyncLoadingCache
.
In-memory caches can be configured and created using
Caffeine
. The cache entries may be loaded by
CacheLoader
, weighed by
Weigher
, and on removal forwarded to
RemovalListener
. Statistics about cache performance
are exposed using CacheStats
.
-
Interface Summary Interface Description AccessOrderDeque.AccessOrder<T extends AccessOrderDeque.AccessOrder<T>> An element that is linked on theDeque
.AsyncCache<K,V> A semi-persistent mapping from keys to values.AsyncCacheLoader<K,V> Computes or retrieves values asynchronously, based on a key, for use in populating aAsyncLoadingCache
.AsyncLoadingCache<K,V> A semi-persistent mapping from keys to values.Buffer<E> A multiple-producer / single-consumer buffer that rejects new elements if it is full or fails spuriously due to contention.Cache<K,V> A semi-persistent mapping from keys to values.CacheLoader<K,V> Computes or retrieves values, based on a key, for use in populating aLoadingCache
orAsyncLoadingCache
.CacheWriter<K,V> Deprecated. Scheduled for removal in version 3.0.0.Expiry<K,V> Calculates when cache entries expire.LinkedDeque<E> A linked list extension of theDeque
interface where the link pointers are tightly integrated with the element.LinkedDeque.PeekingIterator<E> LoadingCache<K,V> A semi-persistent mapping from keys to values.LocalAsyncCache<K,V> This class provides a skeletal implementation of theAsyncCache
interface to minimize the effort required to implement aLocalCache
.LocalCache<K,V> An in-memory cache providing thread safety and atomicity guarantees.LocalLoadingCache<K,V> This class provides a skeletal implementation of theLoadingCache
interface to minimize the effort required to implement aLocalCache
.LocalManualCache<K,V> This class provides a skeletal implementation of theCache
interface to minimize the effort required to implement aLocalCache
.NodeFactory<K,V> WARNING: GENERATED CODE A factory for cache nodes optimized for a particular configuration.Policy<K,V> An access point for inspecting and performing low-level operations based on the cache's runtime characteristics.Policy.Eviction<K,V> The low-level operations for a cache with a size-based eviction policy.Policy.Expiration<K,V> The low-level operations for a cache with a fixed expiration policy.Policy.VarExpiration<K,V> The low-level operations for a cache with a variable expiration policy.References.InternalReference<E> A weak or soft reference that includes the entry's key reference.RemovalListener<K,V> An object that can receive a notification when an entry is removed from a cache.Scheduler A scheduler that submits a task to an executor after a given delay.Ticker A time source that returns a time value representing the number of nanoseconds elapsed since some fixed but arbitrary point in time.Weigher<K,V> Calculates the weights of cache entries.WriteOrderDeque.WriteOrder<T extends WriteOrderDeque.WriteOrder<T>> An element that is linked on theDeque
. -
Class Summary Class Description AbstractLinkedDeque<E> This class provides a skeletal implementation of theLinkedDeque
interface to minimize the effort required to implement this interface.AccessOrderDeque<E extends AccessOrderDeque.AccessOrder<E>> A linked deque implementation used to represent an access-order queue.Async Static utility methods and classes pertaining to asynchronous operations.Async.AsyncExpiry<K,V> An expiry for asynchronous computations.Async.AsyncRemovalListener<K,V> A removal listener that asynchronously forwards the value stored in aCompletableFuture
if successful to the user-supplied removal listener.Async.AsyncWeigher<K,V> A weigher for asynchronous computations.BaseMpscLinkedArrayQueue<E> BaseMpscLinkedArrayQueueColdProducerFields<E> BaseMpscLinkedArrayQueueConsumerFields<E> BaseMpscLinkedArrayQueuePad1<E> BaseMpscLinkedArrayQueuePad2<E> BaseMpscLinkedArrayQueuePad3<E> BaseMpscLinkedArrayQueueProducerFields<E> BBHeader The namespace for field padding through inheritance.BBHeader.PadReadCounter BBHeader.PadWriteCounter BBHeader.ReadAndWriteCounterRef Enforces a memory layout to avoid false sharing by padding the write count.BBHeader.ReadCounterRef Enforces a memory layout to avoid false sharing by padding the read count.BLCHeader The namespace for field padding through inheritance.BLCHeader.DrainStatusRef<K,V> Enforces a memory layout to avoid false sharing by padding the drain status.BLCHeader.PadDrainStatus<K,V> BoundedBuffer<E> A striped, non-blocking, bounded buffer.BoundedBuffer.RingBuffer<E> BoundedLocalCache<K,V> An in-memory cache implementation that supports full concurrency of retrievals, a high expected concurrency for updates, and multiple ways to bound the cache.BoundedLocalCache.BoundedLocalAsyncCache<K,V> BoundedLocalCache.BoundedLocalAsyncLoadingCache<K,V> BoundedLocalCache.BoundedLocalAsyncLoadingCache.AsyncLoader<K,V> BoundedLocalCache.BoundedLocalLoadingCache<K,V> BoundedLocalCache.BoundedLocalManualCache<K,V> BoundedLocalCache.BoundedPolicy<K,V> BoundedLocalCache.EntryIterator<K,V> An adapter to safely externalize the entry iterator.BoundedLocalCache.EntrySetView<K,V> An adapter to safely externalize the entries.BoundedLocalCache.EntrySpliterator<K,V> An adapter to safely externalize the entry spliterator.BoundedLocalCache.KeyIterator<K,V> An adapter to safely externalize the key iterator.BoundedLocalCache.KeySetView<K,V> An adapter to safely externalize the keys.BoundedLocalCache.KeySpliterator<K,V> An adapter to safely externalize the key spliterator.BoundedLocalCache.PerformCleanupTask A reusable task that performs the maintenance work; used to avoid wrapping by ForkJoinPool.BoundedLocalCache.ValueIterator<K,V> An adapter to safely externalize the value iterator.BoundedLocalCache.ValueSpliterator<K,V> An adapter to safely externalize the value spliterator.BoundedLocalCache.ValuesView<K,V> An adapter to safely externalize the values.BoundedWeigher<K,V> Caffeine<K,V> A builder ofCache
,LoadingCache
,AsyncCache
, andAsyncLoadingCache
instances having a combination of the following features: automatic loading of entries into the cache, optionally asynchronously size-based eviction when a maximum is exceeded based on frequency and recency time-based expiration of entries, measured since last access or last write asynchronously refresh when the first stale request for an entry occurs keys automatically wrapped in weak references values automatically wrapped in weak or soft references writes propagated to an external resource notification of evicted (or otherwise removed) entries accumulation of cache access statisticsCaffeine.CacheWriterAdapter<K,V> CaffeineSpec A specification of aCaffeine
builder configuration.ExecutorServiceScheduler FD<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: WeakKeys SoftValuesFDA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess WeakKeys (inherited) SoftValues (inherited)FDAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)FDAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)FDAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)FDARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FDARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FDAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)FDAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FDAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FDAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FDAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FDAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FDMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited)FDMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited)FDR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) SoftValues (inherited)FDRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) RefreshWrite (inherited)FDRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) RefreshWrite (inherited)FDW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) SoftValues (inherited)FDWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)FDWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)FDWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)FDWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) SoftValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FDWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) SoftValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FrequencySketch<E> A probabilistic multiset for estimating the popularity of an element within a time window.FS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: WeakKeys StrongValuesFSA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited)FSAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)FSAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)FSAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)FSARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FSARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FSAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)FSAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FSAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FSAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FSAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FSAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FSMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited)FSMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited)FSR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited)FSRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) RefreshWrite (inherited)FSRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) RefreshWrite (inherited)FSW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited)FSWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)FSWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)FSWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)FSWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FSWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: WeakKeys WeakValuesFWA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess WeakKeys (inherited) WeakValues (inherited)FWAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)FWAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)FWAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)FWARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FWARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)FWAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)FWAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FWAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FWAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)FWAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FWAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited)FWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited)FWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) WeakValues (inherited)FWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) RefreshWrite (inherited)FWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) RefreshWrite (inherited)FWW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite WeakKeys (inherited) WeakValues (inherited)FWWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)FWWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)FWWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite WeakKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)FWWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize WeakKeys (inherited) WeakValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)FWWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight WeakKeys (inherited) WeakValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)GuardedScheduler LocalAsyncCache.AbstractCacheView<K,V> LocalAsyncCache.AsMapView<K,V> LocalAsyncCache.AsyncAsMapView<K,V> LocalAsyncCache.AsyncBulkCompleter<K,V> A function executed asynchronously after a bulk load completes.LocalAsyncCache.CacheView<K,V> LocalAsyncLoadingCache<K,V> This class provides a skeletal implementation of theAsyncLoadingCache
interface to minimize the effort required to implement aLocalCache
.LocalAsyncLoadingCache.LoadingCacheView<K,V> LocalCacheFactory WARNING: GENERATED CODE A factory for caches optimized for a particular configuration.MpscChunkedArrayQueue<E> MpscChunkedArrayQueueColdProducerFields<E> MpscGrowableArrayQueue<E> An MPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks of the initial size.Node<K,V> An entry in the cache containing the key, value, weight, access, and write metadata.Pacer A pacing scheduler that prevents executions from happening too frequently.PD<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: StrongKeys SoftValuesPDA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess StrongKeys (inherited) SoftValues (inherited)PDAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)PDAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)PDAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)PDARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PDARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PDAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited)PDAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PDAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PDAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PDAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PDAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PDMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited)PDMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited)PDR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) SoftValues (inherited)PDRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) RefreshWrite (inherited)PDRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) RefreshWrite (inherited)PDW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) SoftValues (inherited)PDWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)PDWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)PDWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) SoftValues (inherited) ExpireWrite (inherited)PDWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) SoftValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PDWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) SoftValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: StrongKeys StrongValuesPSA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited)PSAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)PSAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)PSAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)PSARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PSARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PSAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)PSAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PSAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PSAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PSAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PSAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PSMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited)PSMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited)PSR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited)PSRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) RefreshWrite (inherited)PSRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) RefreshWrite (inherited)PSW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited)PSWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)PSWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)PSWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)PSWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PSWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: StrongKeys WeakValuesPWA<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireAccess StrongKeys (inherited) WeakValues (inherited)PWAMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)PWAMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)PWAR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)PWARMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PWARMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) RefreshWrite (inherited)PWAW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited)PWAWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PWAWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PWAWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)PWAWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PWAWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited)PWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited)PWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) WeakValues (inherited)PWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) RefreshWrite (inherited)PWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) RefreshWrite (inherited)PWW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: ExpireWrite StrongKeys (inherited) WeakValues (inherited)PWWMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)PWWMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)PWWR<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: RefreshWrite StrongKeys (inherited) WeakValues (inherited) ExpireWrite (inherited)PWWRMS<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumSize StrongKeys (inherited) WeakValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)PWWRMW<K,V> WARNING: GENERATED CODE A cache entry that provides the following features: MaximumWeight StrongKeys (inherited) WeakValues (inherited) ExpireWrite (inherited) RefreshWrite (inherited)References Static utility methods and classes pertaining to weak and soft references.References.LookupKeyReference<E> A short-lived adapter used for looking up an entry in the cache where the keys are weakly held.References.SoftValueReference<V> The value in a cache that holds values softly.References.WeakKeyReference<K> The key in a cache that holds keys weakly.References.WeakValueReference<V> The value in a cache that holds values weakly.SerializationProxy<K,V> Serializes the configuration of the cache, reconsitituting it as aCache
,LoadingCache
, orAsyncLoadingCache
usingCaffeine
upon deserialization.SI<K,V> WARNING: GENERATED CODE A cache that provides the following features: StrongKeys InfirmValuesSIA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited)SIAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited)SIAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited)SIAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SIL<K,V> WARNING: GENERATED CODE A cache that provides the following features: Listening StrongKeys (inherited) InfirmValues (inherited)SILA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited)SILAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited)SILAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)SILMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)SILMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)SILMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)SILMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)SILMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireWrite (inherited)SILMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)SILMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SILMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SILMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)SILMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)SILMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SILR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)SILSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)SILSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)SILSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)SILSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SILSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SILSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SILSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SILSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SILSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)SILSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)SILSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SILSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SILSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SILSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SILSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SILSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SILSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SILSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)SILSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)SILSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireWrite (inherited)SILW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited)SILWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireWrite (inherited)SIMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) InfirmValues (inherited)SIMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)SIMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)SIMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)SIMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SIMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)SIMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)SIMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireWrite (inherited)SIMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) InfirmValues (inherited)SIMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)SIMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SIMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SIMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SIMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)SIMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)SIMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SIR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited)SIS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats StrongKeys (inherited) InfirmValues (inherited)SISA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Stats (inherited)SISAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited)SISAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited)SISAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SISMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) InfirmValues (inherited) Stats (inherited)SISMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)SISMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SISMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SISMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SISMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)SISMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)SISMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)SISMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) InfirmValues (inherited) Stats (inherited)SISMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)SISMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SISMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SISMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SISMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)SISMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)SISMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SISR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited)SISW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited)SISWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireWrite (inherited)SIW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited)SIWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) ExpireWrite (inherited)SS<K,V> WARNING: GENERATED CODE A cache that provides the following features: StrongKeys StrongValuesSSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited)SSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)SSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)SSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSL<K,V> WARNING: GENERATED CODE A cache that provides the following features: Listening StrongKeys (inherited) StrongValues (inherited)SSLA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited)SSLAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited)SSLAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)SSLMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSLMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSLMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)SSLMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)SSLMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireWrite (inherited)SSLMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)SSLMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSLMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSLMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)SSLMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)SSLMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SSLR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)SSLSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)SSLSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)SSLSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)SSLSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SSLSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSLSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSLSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SSLSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)SSLSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)SSLSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)SSLSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SSLSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSLSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSLSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSLSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SSLSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)SSLSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SSLSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)SSLSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)SSLSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireWrite (inherited)SSLW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited)SSLWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireWrite (inherited)SSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited)SSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited)SSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited)SSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited)SSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireWrite (inherited)SSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited)SSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)SSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)SSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)SSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited)SSS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats StrongKeys (inherited) StrongValues (inherited)SSSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Stats (inherited)SSSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited)SSSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited)SSSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize StrongKeys (inherited) StrongValues (inherited) Stats (inherited)SSSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)SSSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)SSSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)SSSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)SSSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)SSSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight StrongKeys (inherited) StrongValues (inherited) Stats (inherited)SSSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)SSSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)SSSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)SSSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)SSSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)SSSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)SSSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited)SSSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited)SSSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireWrite (inherited)SSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited)SSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) ExpireWrite (inherited)StripedBuffer<E> A base class providing the mechanics for supporting dynamic striping of bounded buffers.TimerWheel<K,V> A hierarchical timer wheel to add, remove, and fire expiration events in amortized O(1) time.TimerWheel.Sentinel<K,V> A sentinel for the doubly-linked list in the bucket.UnboundedLocalCache<K,V> An in-memory cache that has no capabilities for bounding the map.UnboundedLocalCache.EntryIterator<K,V> An adapter to safely externalize the entry iterator.UnboundedLocalCache.EntrySetView<K,V> An adapter to safely externalize the entries.UnboundedLocalCache.EntrySpliterator<K,V> An adapter to safely externalize the entry spliterator.UnboundedLocalCache.KeyIterator<K> An adapter to safely externalize the key iterator.UnboundedLocalCache.KeySetView<K> An adapter to safely externalize the keys.UnboundedLocalCache.UnboundedLocalAsyncCache<K,V> UnboundedLocalCache.UnboundedLocalAsyncLoadingCache<K,V> UnboundedLocalCache.UnboundedLocalLoadingCache<K,V> UnboundedLocalCache.UnboundedLocalManualCache<K,V> UnboundedLocalCache.UnboundedPolicy<K,V> An eviction policy that supports no boundings.UnboundedLocalCache.ValuesIterator<K,V> An adapter to safely externalize the value iterator.UnboundedLocalCache.ValuesView<K,V> An adapter to safely externalize the values.UnsafeAccess Static access toUnsafe
and convenient utility methods for performing low-level, unsafe operations.UnsafeRefArrayAccess A concurrent access enabling class used by circular array based queues this class exposes an offset computation method along with differently memory fenced load/store methods into the underlying array.WI<K,V> WARNING: GENERATED CODE A cache that provides the following features: WeakKeys InfirmValuesWIA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited)WIAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited)WIAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited)WIAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WIL<K,V> WARNING: GENERATED CODE A cache that provides the following features: Listening WeakKeys (inherited) InfirmValues (inherited)WILA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited)WILAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited)WILAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)WILMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)WILMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)WILMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)WILMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited)WILMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireWrite (inherited)WILMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)WILMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WILMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WILMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)WILMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited)WILMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WILR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)WILSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)WILSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)WILSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)WILSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WILSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WILSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WILSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WILSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WILSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)WILSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)WILSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WILSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WILSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WILSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WILSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WILSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WILSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WILSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)WILSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited)WILSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) ExpireWrite (inherited)WILW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited)WILWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) ExpireWrite (inherited)WIMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) InfirmValues (inherited)WIMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)WIMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)WIMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)WIMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WIMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)WIMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited)WIMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumSize (inherited) ExpireWrite (inherited)WIMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) InfirmValues (inherited)WIMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)WIMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WIMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WIMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WIMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)WIMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited)WIMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WIR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited)WIS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats WeakKeys (inherited) InfirmValues (inherited)WISA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Stats (inherited)WISAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited)WISAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited)WISAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WISMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) InfirmValues (inherited) Stats (inherited)WISMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)WISMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WISMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WISMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WISMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)WISMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited)WISMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)WISMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) InfirmValues (inherited) Stats (inherited)WISMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)WISMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WISMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WISMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WISMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)WISMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited)WISMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WISR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited)WISW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited)WISWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Stats (inherited) ExpireWrite (inherited)WIW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited)WIWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) ExpireWrite (inherited)WriteOrderDeque<E extends WriteOrderDeque.WriteOrder<E>> A linked deque implementation used to represent a write-order queue.WriteThroughEntry<K,V> An entry that allows updates to write through to the backing map.WS<K,V> WARNING: GENERATED CODE A cache that provides the following features: WeakKeys StrongValuesWSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited)WSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)WSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited)WSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSL<K,V> WARNING: GENERATED CODE A cache that provides the following features: Listening WeakKeys (inherited) StrongValues (inherited)WSLA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited)WSLAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited)WSLAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)WSLMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSLMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSLMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)WSLMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited)WSLMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumSize (inherited) ExpireWrite (inherited)WSLMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)WSLMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSLMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSLMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)WSLMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited)WSLMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WSLR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)WSLSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)WSLSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited)WSLSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)WSLSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WSLSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSLSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSLSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WSLSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited)WSLSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)WSLSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)WSLSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WSLSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSLSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSLSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSLSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WSLSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited)WSLSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WSLSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)WSLSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited)WSLSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) ExpireWrite (inherited)WSLW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited)WSLWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) ExpireWrite (inherited)WSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited)WSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited)WSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited)WSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited)WSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumSize (inherited) ExpireWrite (inherited)WSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited)WSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)WSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)WSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited)WSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited)WSS<K,V> WARNING: GENERATED CODE A cache that provides the following features: Stats WeakKeys (inherited) StrongValues (inherited)WSSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Stats (inherited)WSSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited)WSSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited)WSSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSSMS<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumSize WeakKeys (inherited) StrongValues (inherited) Stats (inherited)WSSMSA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)WSSMSAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSSMSAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)WSSMSAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSSMSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)WSSMSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited)WSSMSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumSize (inherited) ExpireWrite (inherited)WSSMW<K,V> WARNING: GENERATED CODE A cache that provides the following features: MaximumWeight WeakKeys (inherited) StrongValues (inherited) Stats (inherited)WSSMWA<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireAccess WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)WSSMWAR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSSMWAW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)WSSMWAWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited) ExpireWrite (inherited)WSSMWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)WSSMWW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited)WSSMWWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) MaximumWeight (inherited) ExpireWrite (inherited)WSSR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited)WSSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited)WSSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Stats (inherited) ExpireWrite (inherited)WSW<K,V> WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited)WSWR<K,V> WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) ExpireWrite (inherited) -
Enum Summary Enum Description Caffeine.Strength DisabledBuffer DisabledFuture DisabledScheduler DisabledTicker DisabledWriter RemovalCause The reason why a cached entry was removed.SingletonWeigher SystemScheduler SystemTicker -
Exception Summary Exception Description LocalAsyncCache.AsyncBulkCompleter.NullMapCompletionException