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

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

Uses of GenericMapMaker in com.google.common.collect
 

Subclasses of GenericMapMaker in com.google.common.collect
 class MapMaker
          A ConcurrentMap builder, providing any combination of these features: soft or weak keys, soft or weak values, size-based evicition, timed expiration, and on-demand computation of values.
 

Methods in com.google.common.collect that return GenericMapMaker
abstract  GenericMapMaker<K0,V0> GenericMapMaker.concurrencyLevel(int concurrencyLevel)
          See MapMaker.concurrencyLevel.
<K,V> GenericMapMaker<K,V>
MapMaker.evictionListener(MapEvictionListener<K,V> listener)
          Specifies a listener instance, which all maps built using this MapMaker will notify each time an entry is evicted.
abstract  GenericMapMaker<K0,V0> GenericMapMaker.expiration(long duration, TimeUnit unit)
          See MapMaker.expiration(long, java.util.concurrent.TimeUnit).
abstract  GenericMapMaker<K0,V0> GenericMapMaker.expireAfterAccess(long duration, TimeUnit unit)
          See MapMaker.expireAfterAccess(long, java.util.concurrent.TimeUnit).
abstract  GenericMapMaker<K0,V0> GenericMapMaker.expireAfterWrite(long duration, TimeUnit unit)
          See MapMaker.expireAfterWrite(long, java.util.concurrent.TimeUnit).
abstract  GenericMapMaker<K0,V0> GenericMapMaker.initialCapacity(int initialCapacity)
          See MapMaker.initialCapacity.
abstract  GenericMapMaker<K0,V0> GenericMapMaker.maximumSize(int maximumSize)
          See MapMaker.maximumSize.
abstract  GenericMapMaker<K0,V0> GenericMapMaker.softKeys()
          See MapMaker.softKeys().
abstract  GenericMapMaker<K0,V0> GenericMapMaker.softValues()
          See MapMaker.softValues().
abstract  GenericMapMaker<K0,V0> GenericMapMaker.weakKeys()
          See MapMaker.weakKeys().
abstract  GenericMapMaker<K0,V0> GenericMapMaker.weakValues()
          See MapMaker.weakValues().
 

Methods in com.google.common.collect with parameters of type GenericMapMaker
static
<E> ConcurrentHashMultiset<E>
ConcurrentHashMultiset.create(GenericMapMaker<? super E,? super Number> mapMaker)
          Creates a new, empty ConcurrentHashMultiset using mapMaker to construct the internal backing map.