| Package | Description |
|---|---|
| javolution.util |
| Modifier and Type | Method and Description |
|---|---|
static <K,V> FastMap<K,V> |
FastMap.newInstance()
Returns a potentially
recycled map instance. |
FastMap<V,K> |
FastMap.reverse()
Returns the reverse mapping of this map (for which the keys are this
map's values and the values are this map's keys).
|
FastMap<K,V> |
FastMap.setKeyComparator(FastComparator<? super K> keyComparator)
Sets the key comparator for this fast map.
|
FastMap<K,V> |
FastMap.setShared(boolean isShared)
Deprecated.
Replaced by
shared() |
FastMap<K,V> |
FastMap.setValueComparator(FastComparator<? super V> valueComparator)
Sets the value comparator for this map.
|
FastMap<K,V> |
FastMap.shared()
Sets the shared status of this map (whether the map is thread-safe
or not).
|
| Modifier and Type | Method and Description |
|---|---|
static void |
FastMap.recycle(FastMap instance)
Recycles the specified map instance.
|
Copyright © 2005–2021 Javolution. All rights reserved.