Uses of Class
com.google.common.collect.MapMaker

Packages that use MapMaker
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of MapMaker in com.google.common.collect
 

Methods in com.google.common.collect that return MapMaker
 MapMaker MapMaker.concurrencyLevel(int concurrencyLevel)
          Guides the allowed concurrency among update operations.
 MapMaker MapMaker.expiration(long duration, TimeUnit unit)
          Specifies that each entry should be automatically removed from the map once a fixed duration has passed since the entry's creation.
 MapMaker MapMaker.initialCapacity(int initialCapacity)
          Sets a custom initial capacity (defaults to 16).
 MapMaker MapMaker.softKeys()
          Specifies that each key (not value) stored in the map should be wrapped in a SoftReference (by default, strong references are used).
 MapMaker MapMaker.softValues()
          Specifies that each value (not key) stored in the map should be wrapped in a SoftReference (by default, strong references are used).
 MapMaker MapMaker.weakKeys()
          Specifies that each key (not value) stored in the map should be wrapped in a WeakReference (by default, strong references are used).
 MapMaker MapMaker.weakValues()
          Specifies that each value (not key) stored in the map should be wrapped in a WeakReference (by default, strong references are used).