public class KeyComparatorHashMap<K,V>
extends java.util.AbstractMap<K,V>
implements java.util.Map<K,V>, java.lang.Cloneable, java.io.Serializable
HashMap
but supports the
comparison of keys using a KeyComparator
.Constructor and Description |
---|
KeyComparatorHashMap(int initialCapacity,
float loadFactor,
KeyComparator<K> keyComparator)
Constructs an empty HashMap with the specified initial
capacity and load factor.
|
KeyComparatorHashMap(int initialCapacity,
KeyComparator<K> keyComparator)
Constructs an empty HashMap with the specified initial
capacity and the default load factor (0.75).
|
KeyComparatorHashMap(KeyComparator<K> keyComparator)
Constructs an empty HashMap with the default initial capacity
(16) and the default load factor (0.75).
|
KeyComparatorHashMap(java.util.Map<? extends K,? extends V> m,
KeyComparator<K> keyComparator)
Constructs a new HashMap with the same mappings as the
specified Map.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all mappings from this map.
|
java.lang.Object |
clone()
Returns a shallow copy of this HashMap 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 collection view of the mappings contained in this map.
|
V |
get(java.lang.Object key)
Returns the value to which the specified key is mapped in this identity
hash map, or null if the map contains no mapping for this key.
|
int |
getDEFAULT_INITIAL_CAPACITY() |
int |
getModCount()
Get the number of times this HashMap has been structurally modified
Structural modifications are those that change the number of mappings in
the HashMap or otherwise modify its internal structure (e.g.,
rehash).
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
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
These mappings will replace any mappings that
this map had for any of the keys currently in the specified map.
|
V |
remove(java.lang.Object key)
Removes the mapping for this key from this map if present.
|
int |
size()
Returns the number of key-value mappings in this map.
|
public KeyComparatorHashMap(int initialCapacity, float loadFactor, KeyComparator<K> keyComparator)
initialCapacity
- The initial capacity.loadFactor
- The load factor.java.lang.IllegalArgumentException
- if the initial capacity is negative
or the load factor is nonpositive.public KeyComparatorHashMap(int initialCapacity, KeyComparator<K> keyComparator)
initialCapacity
- the initial capacity.java.lang.IllegalArgumentException
- if the initial capacity is negative.public KeyComparatorHashMap(KeyComparator<K> keyComparator)
public KeyComparatorHashMap(java.util.Map<? extends K,? extends V> m, KeyComparator<K> keyComparator)
m
- the map whose mappings are to be placed in this map.java.lang.NullPointerException
- if the specified map is null.public int getDEFAULT_INITIAL_CAPACITY()
public int getModCount()
public int size()
public boolean isEmpty()
public V get(java.lang.Object key)
get
in interface java.util.Map<K,V>
get
in class java.util.AbstractMap<K,V>
key
- the key whose associated value is to be returned.put(Object, Object)
public boolean containsKey(java.lang.Object key)
public V put(K key, V value)
put
in interface java.util.Map<K,V>
put
in class java.util.AbstractMap<K,V>
key
- key with which the specified value is to be associated.value
- value to be associated with the specified key.public void putAll(java.util.Map<? extends K,? extends V> m)
public V remove(java.lang.Object key)
remove
in interface java.util.Map<K,V>
remove
in class java.util.AbstractMap<K,V>
key
- key whose mapping is to be removed from the map.public void clear()
public boolean containsValue(java.lang.Object value)
public java.lang.Object clone()
public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
Copyright © 2016 Oracle Corporation. All Rights Reserved.