public final class UnmodifiableMapEntry<K,V> extends AbstractMapEntry<K,V> implements Unmodifiable
Map.Entry
that throws
UnsupportedOperationException when setValue
is called.Constructor and Description |
---|
UnmodifiableMapEntry(KeyValue<? extends K,? extends V> pair)
Constructs a new entry from the specified
KeyValue . |
UnmodifiableMapEntry(K key,
V value)
Constructs a new entry with the specified key and given value.
|
UnmodifiableMapEntry(java.util.Map.Entry<? extends K,? extends V> entry)
Constructs a new entry from the specified
Map.Entry . |
Modifier and Type | Method and Description |
---|---|
V |
setValue(V value)
Throws UnsupportedOperationException.
|
equals, hashCode
getKey, getValue, toString
public UnmodifiableMapEntry(K key, V value)
key
- the key for the entry, may be nullvalue
- the value for the entry, may be nullpublic UnmodifiableMapEntry(KeyValue<? extends K,? extends V> pair)
KeyValue
.pair
- the pair to copy, must not be nulljava.lang.NullPointerException
- if the entry is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved