Package org.infinispan.commons.util
Class FastCopyHashMap<K,V>
- java.lang.Object
-
- org.infinispan.commons.util.AbstractMap<K,V>
-
- org.infinispan.commons.util.FastCopyHashMap<K,V>
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.util.Map<K,V>
public class FastCopyHashMap<K,V> extends AbstractMap<K,V> implements java.util.Map<K,V>, java.lang.Cloneable, java.io.Serializable
A HashMap that is optimized for fast shallow copies. Null keys are not supported.- Since:
- 4.0
- Author:
- Jason T. Greene
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classFastCopyHashMap.EntrySetclassFastCopyHashMap.KeySetclassFastCopyHashMap.Values-
Nested classes/interfaces inherited from class org.infinispan.commons.util.AbstractMap
AbstractMap.SimpleEntry<K,V>
-
-
Field Summary
-
Fields inherited from class org.infinispan.commons.util.AbstractMap
entrySet, keySet, values
-
-
Constructor Summary
Constructors Constructor Description FastCopyHashMap()FastCopyHashMap(int initialCapacity)FastCopyHashMap(int initialCapacity, float loadFactor)FastCopyHashMap(java.util.Map<? extends K,? extends V> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()FastCopyHashMap<K,V>clone()booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)java.util.Set<java.util.Map.Entry<K,V>>entrySet()Vget(java.lang.Object key)booleanisEmpty()java.util.Set<K>keySet()voidprintDebugStats()Vput(K key, V value)voidputAll(java.util.Map<? extends K,? extends V> map)Vremove(java.lang.Object key)intsize()java.lang.StringtoString()Returns a string representation of this map.java.util.Collection<V>values()-
Methods inherited from class org.infinispan.commons.util.AbstractMap
assertKeyNotNull, eq, hash, hashCode
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(java.lang.Object key)
-
toString
public java.lang.String toString()
Returns a string representation of this map. The string representation consists of a list of key-value mappings in the order returned by the map's entrySet view's iterator, enclosed in braces ("{}"). Adjacent mappings are separated by the characters ", " (comma and space). Each key-value mapping is rendered as the key followed by an equals sign ("=") followed by the associated value. Keys and values are converted to strings as byString.valueOf(Object).- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of this map
-
containsValue
public boolean containsValue(java.lang.Object value)
-
clone
public FastCopyHashMap<K,V> clone()
- Overrides:
clonein classjava.lang.Object
-
printDebugStats
public void printDebugStats()
-
values
public java.util.Collection<V> values()
-
-