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
Fields in com.google.common.collect declared as MapMaker Modifier and Type Field Description private MapMakerInterners.InternerBuilder. mapMakerMethods 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.(package private) MapMakerMapMaker. keyEquivalence(Equivalence<java.lang.Object> equivalence)Sets a customEquivalencestrategy for comparing keys.(package private) MapMakerMapMakerInternalMap.AbstractSerializationProxy. readMapMaker(java.io.ObjectInputStream in)(package private) MapMakerMapMaker. setKeyStrength(MapMakerInternalMap.Strength strength)(package private) MapMakerMapMaker. setValueStrength(MapMakerInternalMap.Strength strength)(package private) static MapMakerPlatform. tryWeakKeys(MapMaker mapMaker)Configures the given map maker to use weak keys, if possible; does nothing otherwise (i.e., in GWT).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 (package private) static <K,V>
MapMakerInternalMap<K,V,? extends MapMakerInternalMap.InternalEntry<K,V,?>,?>MapMakerInternalMap. create(MapMaker builder)Returns a freshMapMakerInternalMapas specified by the givenbuilder.(package private) static <K> MapMakerInternalMap<K,MapMaker.Dummy,? extends MapMakerInternalMap.InternalEntry<K,MapMaker.Dummy,?>,?>MapMakerInternalMap. createWithDummyValues(MapMaker builder)Returns a freshMapMakerInternalMapwithMapMaker.Dummyvalues but otherwise as specified by the givenbuilder.(package private) static MapMakerPlatform. tryWeakKeys(MapMaker mapMaker)Configures the given map maker to use weak keys, if possible; does nothing otherwise (i.e., in GWT).Constructors in com.google.common.collect with parameters of type MapMaker Constructor Description InternerImpl(MapMaker mapMaker)MapMakerInternalMap(MapMaker builder, MapMakerInternalMap.InternalEntryHelper<K,V,E,S> entryHelper)Creates a new, empty map with the specified strategy, initial capacity and concurrency level.
-