K0
- the base type for all key types of maps built by this map makerV0
- the base type for all value types of maps built by this map maker@Beta @GwtCompatible(emulated=true) public abstract class GenericMapMaker<K0,V0> extends Object
MapMaker
, except restricted in the types of maps it can build.
For the most part, you should probably just ignore the existence of this class.Modifier and Type | Method and Description |
---|---|
abstract GenericMapMaker<K0,V0> |
concurrencyLevel(int concurrencyLevel)
|
abstract GenericMapMaker<K0,V0> |
initialCapacity(int initialCapacity)
|
abstract <K extends K0,V extends V0> |
makeComputingMap(Function<? super K,? extends V> computingFunction)
Deprecated.
|
abstract <K extends K0,V extends V0> |
makeMap()
See
MapMaker.makeMap() . |
abstract GenericMapMaker<K0,V0> |
softValues()
|
abstract GenericMapMaker<K0,V0> |
weakKeys()
See
MapMaker.weakKeys() . |
abstract GenericMapMaker<K0,V0> |
weakValues()
|
public abstract GenericMapMaker<K0,V0> initialCapacity(int initialCapacity)
public abstract GenericMapMaker<K0,V0> concurrencyLevel(int concurrencyLevel)
@GwtIncompatible(value="java.lang.ref.WeakReference") public abstract GenericMapMaker<K0,V0> weakKeys()
MapMaker.weakKeys()
.@GwtIncompatible(value="java.lang.ref.WeakReference") public abstract GenericMapMaker<K0,V0> weakValues()
@GwtIncompatible(value="java.lang.ref.SoftReference") public abstract GenericMapMaker<K0,V0> softValues()
public abstract <K extends K0,V extends V0> ConcurrentMap<K,V> makeMap()
MapMaker.makeMap()
.@Deprecated public abstract <K extends K0,V extends V0> ConcurrentMap<K,V> makeComputingMap(Function<? super K,? extends V> computingFunction)
Copyright © 2010-2013. All Rights Reserved.