zombie.core.Collections
Class ZomboidHashMap<K,V>

java.lang.Object
  extended by zombie.core.Collections.ZomboidAbstractMap<K,V>
      extended by zombie.core.Collections.ZomboidHashMap<K,V>
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.util.Map<K,V>

public class ZomboidHashMap<K,V>
extends ZomboidAbstractMap<K,V>
implements java.util.Map<K,V>, java.lang.Cloneable, java.io.Serializable

Author:
LEMMY
See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class zombie.core.Collections.ZomboidAbstractMap
ZomboidAbstractMap.SimpleEntry<K,V>, ZomboidAbstractMap.SimpleImmutableEntry<K,V>
 
Constructor Summary
ZomboidHashMap()
          Constructs an empty ZomboidHashMap with the default initial capacity (16) and the default load factor (0.75).
ZomboidHashMap(int initialCapacity)
          Constructs an empty ZomboidHashMap with the specified initial capacity and the default load factor (0.75).
ZomboidHashMap(int initialCapacity, float loadFactor)
          Constructs an empty ZomboidHashMap with the specified initial capacity and load factor.
ZomboidHashMap(java.util.Map<? extends K,? extends V> m)
          Constructs a new ZomboidHashMap with the same mappings as the specified Map.
 
Method Summary
 void clear()
          Removes all of the mappings from this map.
 java.lang.Object clone()
          Returns a shallow copy of this ZomboidHashMap instance: the keys and values themselves are not cloned.
 boolean containsKey(java.lang.Object key)
          Returns true if this map contains a mapping for the specified key.
 boolean containsValue(java.lang.Object value)
          Returns true if this map maps one or more keys to the specified value.
 java.util.Set<java.util.Map.Entry<K,V>> entrySet()
          Returns a Set view of the mappings contained in this map.
 V get(java.lang.Object key)
          Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
 boolean isEmpty()
          Returns true if this map contains no key-value mappings.
 java.util.Set<K> keySet()
          Returns a Set view of the keys contained in this map.
 V put(K key, V value)
          Associates the specified value with the specified key in this map.
 void putAll(java.util.Map<? extends K,? extends V> m)
          Copies all of the mappings from the specified map to this map.
 V remove(java.lang.Object key)
          Removes the mapping for the specified key from this map if present.
 int size()
          Returns the number of key-value mappings in this map.
 java.util.Collection<V> values()
          Returns a Collection view of the values contained in this map.
 
Methods inherited from class zombie.core.Collections.ZomboidAbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

ZomboidHashMap

public ZomboidHashMap(int initialCapacity,
                      float loadFactor)
Constructs an empty ZomboidHashMap with the specified initial capacity and load factor.

Parameters:
initialCapacity - the initial capacity
loadFactor - the load factor
Throws:
java.lang.IllegalArgumentException - if the initial capacity is negative or the load factor is nonpositive

ZomboidHashMap

public ZomboidHashMap(int initialCapacity)
Constructs an empty ZomboidHashMap with the specified initial capacity and the default load factor (0.75).

Parameters:
initialCapacity - the initial capacity.
Throws:
java.lang.IllegalArgumentException - if the initial capacity is negative.

ZomboidHashMap

public ZomboidHashMap()
Constructs an empty ZomboidHashMap with the default initial capacity (16) and the default load factor (0.75).


ZomboidHashMap

public ZomboidHashMap(java.util.Map<? extends K,? extends V> m)
Constructs a new ZomboidHashMap with the same mappings as the specified Map. The ZomboidHashMap is created with default load factor (0.75) and an initial capacity sufficient to hold the mappings in the specified Map.

Parameters:
m - the map whose mappings are to be placed in this map
Throws:
java.lang.NullPointerException - if the specified map is null
Method Detail

size

public int size()
Returns the number of key-value mappings in this map.

Specified by:
size in interface java.util.Map<K,V>
Overrides:
size in class ZomboidAbstractMap<K,V>
Returns:
the number of key-value mappings in this map

isEmpty

public boolean isEmpty()
Returns true if this map contains no key-value mappings.

Specified by:
isEmpty in interface java.util.Map<K,V>
Overrides:
isEmpty in class ZomboidAbstractMap<K,V>
Returns:
true if this map contains no key-value mappings

get

public V get(java.lang.Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

More formally, if this map contains a mapping from a key k to a value v such that (key==null ? k==null : key.equals(k)), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)

A return value of null does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key to null. The containsKey operation may be used to distinguish these two cases.

Specified by:
get in interface java.util.Map<K,V>
Overrides:
get in class ZomboidAbstractMap<K,V>
See Also:
put(Object, Object)

containsKey

public boolean containsKey(java.lang.Object key)
Returns true if this map contains a mapping for the specified key.

Specified by:
containsKey in interface java.util.Map<K,V>
Overrides:
containsKey in class ZomboidAbstractMap<K,V>
Parameters:
key - The key whose presence in this map is to be tested
Returns:
true if this map contains a mapping for the specified key.

put

public V put(K key,
             V value)
Associates the specified value with the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced.

Specified by:
put in interface java.util.Map<K,V>
Overrides:
put in class ZomboidAbstractMap<K,V>
Parameters:
key - key with which the specified value is to be associated
value - value to be associated with the specified key
Returns:
the previous value associated with key, or null if there was no mapping for key. (A null return can also indicate that the map previously associated null with key.)

putAll

public void putAll(java.util.Map<? extends K,? extends V> m)
Copies all of the mappings from the specified map to this map. These mappings will replace any mappings that this map had for any of the keys currently in the specified map.

Specified by:
putAll in interface java.util.Map<K,V>
Overrides:
putAll in class ZomboidAbstractMap<K,V>
Parameters:
m - mappings to be stored in this map
Throws:
java.lang.NullPointerException - if the specified map is null

remove

public V remove(java.lang.Object key)
Removes the mapping for the specified key from this map if present.

Specified by:
remove in interface java.util.Map<K,V>
Overrides:
remove in class ZomboidAbstractMap<K,V>
Parameters:
key - key whose mapping is to be removed from the map
Returns:
the previous value associated with key, or null if there was no mapping for key. (A null return can also indicate that the map previously associated null with key.)

clear

public void clear()
Removes all of the mappings from this map. The map will be empty after this call returns.

Specified by:
clear in interface java.util.Map<K,V>
Overrides:
clear in class ZomboidAbstractMap<K,V>

containsValue

public boolean containsValue(java.lang.Object value)
Returns true if this map maps one or more keys to the specified value.

Specified by:
containsValue in interface java.util.Map<K,V>
Overrides:
containsValue in class ZomboidAbstractMap<K,V>
Parameters:
value - value whose presence in this map is to be tested
Returns:
true if this map maps one or more keys to the specified value

clone

public java.lang.Object clone()
Returns a shallow copy of this ZomboidHashMap instance: the keys and values themselves are not cloned.

Returns:
a shallow copy of this map

keySet

public java.util.Set<K> keySet()
Returns a Set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations.

Specified by:
keySet in interface java.util.Map<K,V>
Overrides:
keySet in class ZomboidAbstractMap<K,V>

values

public java.util.Collection<V> values()
Returns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Specified by:
values in interface java.util.Map<K,V>
Overrides:
values in class ZomboidAbstractMap<K,V>

entrySet

public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Specified by:
entrySet in interface java.util.Map<K,V>
Specified by:
entrySet in class ZomboidAbstractMap<K,V>
Returns:
a set view of the mappings contained in this map