| Package | Description |
|---|---|
| java.util |
| Modifier and Type | Class and Description |
|---|---|
static class |
AbstractMap.SimpleEntry<K,V>
An Entry maintaining a key and a value.
|
static class |
AbstractMap.SimpleImmutableEntry<K,V>
An Entry maintaining an immutable key and value.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Map.Entry<K,V>> |
SortedMap.entrySet()
Returns a
Set view of the mappings contained in this map. |
Set<Map.Entry<K,V>> |
Map.entrySet()
Returns a
Set view of the mappings contained in this map. |
Set<Map.Entry<K,V>> |
Hashtable.entrySet()
Returns a
Set view of the mappings contained in this map. |
Set<Map.Entry<K,V>> |
HashMap.entrySet()
Returns a
Set view of the mappings contained in this map. |
abstract Set<Map.Entry<K,V>> |
AbstractMap.entrySet() |
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
LinkedHashMap.removeEldestEntry(Map.Entry<K,V> eldest)
Returns true if this map should remove its eldest entry.
|
| Constructor and Description |
|---|
AbstractMap.SimpleEntry(Map.Entry<? extends K,? extends V> entry)
Creates an entry representing the same mapping as the
specified entry.
|
AbstractMap.SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry)
Creates an entry representing the same mapping as the
specified entry.
|
Copyright © 2013 API Design. All Rights Reserved.