Uses of Class
com.google.common.collect.MapMaker
-
Packages that use MapMaker Package Description 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 Modifier and Type Method Description MapMakerMapMaker. concurrencyLevel(int concurrencyLevel)Guides the allowed concurrency among update operations.MapMakerMapMaker. initialCapacity(int initialCapacity)Sets the minimum total size for the internal hash tables.MapMakerMapMaker. weakKeys()Specifies that each key (not value) stored in the map should be wrapped in aWeakReference(by default, strong references are used).MapMakerMapMaker. weakValues()Specifies that each value (not key) stored in the map should be wrapped in aWeakReference(by default, strong references are used).Methods in com.google.common.collect with parameters of type MapMaker Modifier and Type Method Description static <E> ConcurrentHashMultiset<E>ConcurrentHashMultiset. create(MapMaker mapMaker)Creates a new, emptyConcurrentHashMultisetusingmapMakerto construct the internal backing map.
-