com.go.trove.util |
|
Java Source File Name | Type | Comment |
AbstractMapEntry.java | Class | Abstract Map.Entry implementation that makes it easier to define new Map
entries. |
Cache.java | Class | Cache is a SoftHashMap that is guaranteed to have the most recently used
entries available. |
IdentityMap.java | Class | An IdentityMap is like WeakHashMap, except it uses a key's identity
hashcode and equals methods. |
SoftHashMap.java | Class | A Map that softly references its values and can be used as a simple cache.
SoftHashMap is not thread-safe and must be wrapped with
Collections.synchronizedMap to be made thread-safe. |
UsageMap.java | Class | A Map that orders its keys based on how recently they have been used.
Most recently used keys appear first in the Map. |