Uses of Class
javolution.util.FastMap

Packages that use FastMap
javolution.util Provides high-performance collection classes and miscellaneous utilities; although this package provides very few collection classes, they are substitutes for most of java.util.* classes (for example, java.util.IdentityHashMap would be a FastMap with an identity key comparator). 
 

Uses of FastMap in javolution.util
 

Methods in javolution.util that return FastMap
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).
 

Methods in javolution.util with parameters of type FastMap
static void FastMap.recycle(FastMap instance)
          Recycles the specified map instance.
 



Copyright © 2005-2012 Javolution. All Rights Reserved.