Package com.github.benmanes.caffeine.cache


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.

  • Class
    Description
    This class provides a skeletal implementation of the LinkedDeque interface to minimize the effort required to implement this interface.
    A linked deque implementation used to represent an access-order queue.
    An element that is linked on the Deque.
    Static utility methods and classes pertaining to asynchronous operations.
    An expiry for asynchronous computations.
    A removal listener that asynchronously forwards the value stored in a CompletableFuture if successful to the user-supplied removal listener.
    A weigher for asynchronous computations.
    A semi-persistent mapping from keys to values.
    Computes or retrieves values asynchronously, based on a key, for use in populating a AsyncLoadingCache.
    A semi-persistent mapping from keys to values.
     
     
     
     
     
     
     
    The namespace for field padding through inheritance.
     
     
    Enforces a memory layout to avoid false sharing by padding the write count.
    Enforces a memory layout to avoid false sharing by padding the read count.
    The namespace for field padding through inheritance.
    Enforces a memory layout to avoid false sharing by padding the drain status.
     
    A striped, non-blocking, bounded buffer.
     
    An in-memory cache implementation that supports full concurrency of retrievals, a high expected concurrency for updates, and multiple ways to bound the cache.
     
     
     
     
     
     
    An adapter to safely externalize the entry iterator.
    An adapter to safely externalize the entries.
    An adapter to safely externalize the entry spliterator.
    An adapter to safely externalize the key iterator.
    An adapter to safely externalize the keys.
    An adapter to safely externalize the key spliterator.
    A reusable task that performs the maintenance work; used to avoid wrapping by ForkJoinPool.
    An adapter to safely externalize the value iterator.
    An adapter to safely externalize the value spliterator.
    An adapter to safely externalize the values.
     
    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.
    Computes or retrieves values, based on a key, for use in populating a LoadingCache or AsyncLoadingCache.
    Deprecated.
    Scheduled for removal in version 3.0.0.
    A builder of Cache, LoadingCache, AsyncCache, and AsyncLoadingCache 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 statistics
     
     
    A specification of a Caffeine builder configuration.
     
     
     
     
     
     
    Expiry<K,V>
    Calculates when cache entries expire.
    FD<K,V>
    WARNING: GENERATED CODE A cache entry that provides the following features: WeakKeys SoftValues
    FDA<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)
    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 StrongValues
    FSA<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 WeakValues
    FWA<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)
     
    A linked list extension of the Deque interface where the link pointers are tightly integrated with the element.
     
    A semi-persistent mapping from keys to values.
    This class provides a skeletal implementation of the AsyncCache interface to minimize the effort required to implement a LocalCache.
     
     
     
    A function executed asynchronously after a bulk load completes.
     
     
    This class provides a skeletal implementation of the AsyncLoadingCache interface to minimize the effort required to implement a LocalCache.
     
    An in-memory cache providing thread safety and atomicity guarantees.
    WARNING: GENERATED CODE A factory for caches optimized for a particular configuration.
    This class provides a skeletal implementation of the LoadingCache interface to minimize the effort required to implement a LocalCache.
    This class provides a skeletal implementation of the Cache interface to minimize the effort required to implement a LocalCache.
     
     
    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.
    WARNING: GENERATED CODE A factory for cache nodes optimized for a particular configuration.
    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 SoftValues
    PDA<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)
    Policy<K,V>
    An access point for inspecting and performing low-level operations based on the cache's runtime characteristics.
    The low-level operations for a cache with a size-based eviction policy.
    The low-level operations for a cache with a fixed expiration policy.
    The low-level operations for a cache with a variable expiration policy.
    PS<K,V>
    WARNING: GENERATED CODE A cache entry that provides the following features: StrongKeys StrongValues
    PSA<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 WeakValues
    PWA<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)
    Static utility methods and classes pertaining to weak and soft references.
    A weak or soft reference that includes the entry's key reference.
    A short-lived adapter used for looking up an entry in the cache where the keys are weakly held.
    The value in a cache that holds values softly.
    The key in a cache that holds keys weakly.
    The value in a cache that holds values weakly.
    The reason why a cached entry was removed.
    An object that can receive a notification when an entry is removed from a cache.
    A scheduler that submits a task to an executor after a given delay.
    Serializes the configuration of the cache, reconsitituting it as a Cache, LoadingCache, or AsyncLoadingCache using Caffeine upon deserialization.
    SI<K,V>
    WARNING: GENERATED CODE A cache that provides the following features: StrongKeys InfirmValues
    SIA<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)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    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)
    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)
    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)
    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 StrongValues
    SSA<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)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite StrongKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    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)
    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)
    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)
    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)
    A base class providing the mechanics for supporting dynamic striping of bounded buffers.
     
     
    A time source that returns a time value representing the number of nanoseconds elapsed since some fixed but arbitrary point in time.
    A hierarchical timer wheel to add, remove, and fire expiration events in amortized O(1) time.
    A sentinel for the doubly-linked list in the bucket.
    An in-memory cache that has no capabilities for bounding the map.
    An adapter to safely externalize the entry iterator.
    An adapter to safely externalize the entries.
    An adapter to safely externalize the entry spliterator.
    An adapter to safely externalize the key iterator.
    An adapter to safely externalize the keys.
     
     
     
     
    An eviction policy that supports no boundings.
    An adapter to safely externalize the value iterator.
    An adapter to safely externalize the values.
    Static access to Unsafe and convenient utility methods for performing low-level, unsafe operations.
    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.
    Weigher<K,V>
    Calculates the weights of cache entries.
    WI<K,V>
    WARNING: GENERATED CODE A cache that provides the following features: WeakKeys InfirmValues
    WIA<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)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) InfirmValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    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)
    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)
    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)
    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)
    A linked deque implementation used to represent a write-order queue.
    An element that is linked on the Deque.
    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 StrongValues
    WSA<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)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumSize (inherited) ExpireAccess (inherited)
    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)
    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)
    WARNING: GENERATED CODE A cache that provides the following features: RefreshWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    WARNING: GENERATED CODE A cache that provides the following features: ExpireWrite WeakKeys (inherited) StrongValues (inherited) Listening (inherited) Stats (inherited) MaximumWeight (inherited) ExpireAccess (inherited)
    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)
    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)
    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)
    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)