|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MapMaker | |
---|---|
com.google.inject.internal | Guice (sounds like like "juice") |
Uses of MapMaker in com.google.inject.internal |
---|
Methods in com.google.inject.internal that return MapMaker | |
---|---|
MapMaker |
MapMaker.concurrencyLevel(int concurrencyLevel)
Guides the allowed concurrency among update operations. |
MapMaker |
MapMaker.expiration(long duration,
java.util.concurrent.TimeUnit unit)
Specifies that each entry should be automatically removed from the map once a fixed duration has passed since the entry's creation. |
MapMaker |
MapMaker.initialCapacity(int initialCapacity)
Sets a custom initial capacity (defaults to 16). |
MapMaker |
MapMaker.loadFactor(float loadFactor)
Sets a custom load factor (defaults to 0.75). |
MapMaker |
MapMaker.softKeys()
Specifies that each key (not value) stored in the map should be wrapped in a SoftReference (by default, strong references
are used). |
MapMaker |
MapMaker.softValues()
Specifies that each value (not key) stored in the map should be wrapped in a SoftReference (by default, strong references
are used). |
MapMaker |
MapMaker.weakKeys()
Specifies that each key (not value) stored in the map should be wrapped in a WeakReference (by default, strong references
are used). |
MapMaker |
MapMaker.weakValues()
Specifies that each value (not key) stored in the map should be wrapped in a WeakReference (by default, strong references
are used). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |