|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap<K,V>
org.glassfish.jersey.internal.util.KeyComparatorHashMap<K,V>
K - Type of keysV - Type of valuespublic class KeyComparatorHashMap<K,V>
A implementation similar to HashMap but supports the
comparison of keys using a KeyComparator.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class java.util.AbstractMap |
|---|
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V> |
| Constructor Summary | |
|---|---|
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(Map<? extends K,? extends V> m,
KeyComparator<K> keyComparator)
Constructs a new HashMap with the same mappings as the specified Map. |
|
| Method Summary | |
|---|---|
void |
clear()
Removes all mappings from this map. |
Object |
clone()
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned. |
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the specified key. |
boolean |
containsValue(Object value)
Returns true if this map maps one or more keys to the specified value. |
Set<Map.Entry<K,V>> |
entrySet()
Returns a collection view of the mappings contained in this map. |
V |
get(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(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(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. |
| Methods inherited from class java.util.AbstractMap |
|---|
equals, hashCode, keySet, toString, values |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Map |
|---|
equals, hashCode, keySet, values |
| Constructor Detail |
|---|
public KeyComparatorHashMap(int initialCapacity,
float loadFactor,
KeyComparator<K> keyComparator)
initialCapacity - The initial capacity.loadFactor - The load factor.keyComparator - the map key comparator.
IllegalArgumentException - if the initial capacity is negative
or the load factor is nonpositive.
public KeyComparatorHashMap(int initialCapacity,
KeyComparator<K> keyComparator)
initialCapacity - the initial capacity.keyComparator - the map key comparator.
IllegalArgumentException - if the initial capacity is negative.public KeyComparatorHashMap(KeyComparator<K> keyComparator)
keyComparator - the map key comparator.
public KeyComparatorHashMap(Map<? extends K,? extends V> m,
KeyComparator<K> keyComparator)
m - the map whose mappings are to be placed in this map.keyComparator - the comparator
NullPointerException - if the specified map is null.| Method Detail |
|---|
public int getDEFAULT_INITIAL_CAPACITY()
public int getModCount()
public int size()
size in interface Map<K,V>size in class AbstractMap<K,V>public boolean isEmpty()
isEmpty in interface Map<K,V>isEmpty in class AbstractMap<K,V>public V get(Object key)
get in interface Map<K,V>get in class AbstractMap<K,V>key - the key whose associated value is to be returned.
put(Object, Object)public boolean containsKey(Object key)
containsKey in interface Map<K,V>containsKey in class AbstractMap<K,V>key - The key whose presence in this map is to be tested
public V put(K key,
V value)
put in interface Map<K,V>put in class 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(Map<? extends K,? extends V> m)
putAll in interface Map<K,V>putAll in class AbstractMap<K,V>m - mappings to be stored in this map.
NullPointerException - if the specified map is null.public V remove(Object key)
remove in interface Map<K,V>remove in class AbstractMap<K,V>key - key whose mapping is to be removed from the map.
public void clear()
clear in interface Map<K,V>clear in class AbstractMap<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>containsValue in class AbstractMap<K,V>value - value whose presence in this map is to be tested.
public Object clone()
clone in class AbstractMap<K,V>public Set<Map.Entry<K,V>> entrySet()
entrySet in interface Map<K,V>entrySet in class AbstractMap<K,V>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||