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>> |
WeakHashMap.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() |
Constructor and Description |
---|
SimpleEntry(Map.Entry<? extends K,? extends V> entry)
Creates an entry representing the same mapping as the specified entry.
|
SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry) |