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 class
FastCopyHashMap.EntrySet
class
FastCopyHashMap.KeySet
class
FastCopyHashMap.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 void
clear()
FastCopyHashMap<K,V>
clone()
boolean
containsKey(java.lang.Object key)
boolean
containsValue(java.lang.Object value)
java.util.Set<java.util.Map.Entry<K,V>>
entrySet()
V
get(java.lang.Object key)
boolean
isEmpty()
java.util.Set<K>
keySet()
void
printDebugStats()
V
put(K key, V value)
void
putAll(java.util.Map<? extends K,? extends V> map)
V
remove(java.lang.Object key)
int
size()
java.lang.String
toString()
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:
toString
in 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:
clone
in classjava.lang.Object
-
printDebugStats
public void printDebugStats()
-
values
public java.util.Collection<V> values()
-
-