| Removed Methods | 
  
  
  (CacheBuilder<K, V>) expireAfterAccess(Duration)
   | 
  Specifies that each entry should be automatically removed from the cache once a fixed duration
 has elapsed after the entry's creation, the most recent replacement of its value, or its last
 access. | 
  
  
  (CacheBuilder<K, V>) expireAfterWrite(Duration)
   | 
  Specifies that each entry should be automatically removed from the cache once a fixed duration
 has elapsed after the entry's creation, or the most recent replacement of its value. | 
  
  
  (CacheBuilder<K, V>) refreshAfterWrite(Duration)
   | 
  Specifies that active entries are eligible for automatic refresh once a fixed duration has
 elapsed after the entry's creation, or the most recent replacement of its value. |