Package | Description |
---|---|
org.glassfish.jersey.internal.util.collection |
Common set of Jersey collection classes.
|
Modifier and Type | Class and Description |
---|---|
private static class |
KeyComparatorLinkedHashMap.Entry<K,V>
LinkedHashMap entry.
|
Modifier and Type | Field and Description |
---|---|
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.HashIterator.current |
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.Entry.next |
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.HashIterator.next |
(package private) KeyComparatorHashMap.Entry<K,V>[] |
KeyComparatorHashMap.table
The table, resized as necessary.
|
Modifier and Type | Method and Description |
---|---|
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.getEntry(K key)
Returns the entry associated with the specified key in the
HashMap.
|
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.HashIterator.nextEntry() |
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.removeEntryForKey(java.lang.Object key)
Removes and returns the entry associated with the specified key
in the HashMap.
|
(package private) KeyComparatorHashMap.Entry<K,V> |
KeyComparatorHashMap.removeMapping(java.lang.Object o)
Special version of remove for EntrySet.
|
Modifier and Type | Method and Description |
---|---|
(package private) void |
KeyComparatorLinkedHashMap.transfer(KeyComparatorHashMap.Entry[] newTable)
Transfers all entries to new table array.
|
(package private) void |
KeyComparatorHashMap.transfer(KeyComparatorHashMap.Entry<K,V>[] newTable)
Transfer all entries from current table to newTable.
|
Constructor and Description |
---|
Entry(int hash,
K key,
V value,
KeyComparatorHashMap.Entry<K,V> next) |
Entry(int h,
K k,
V v,
KeyComparatorHashMap.Entry<K,V> n)
Create new entry.
|