|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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, 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 . |
|
|
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.initialCapacity(int initialCapacity)
See MapMaker.initialCapacity . |
|
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
|
ConcurrentHashMultiset.create(GenericMapMaker<? super E,? super Number> mapMaker)
Creates a new, empty ConcurrentHashMultiset using mapMaker
to construct the internal backing map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |