org.fourthline.cling.support.shared
Class AbstractMap.SimpleImmutableEntry<K,V>
java.lang.Object
org.fourthline.cling.support.shared.AbstractMap.SimpleImmutableEntry<K,V>
- All Implemented Interfaces:
- Serializable, Map.Entry<K,V>
- Enclosing class:
- AbstractMap<K,V>
public static class AbstractMap.SimpleImmutableEntry<K,V>
- extends Object
- implements Map.Entry<K,V>, Serializable
An immutable key-value mapping. Despite the name, this class is non-final
and its subclasses may be mutable.
- Since:
- 1.6
- See Also:
- Serialized Form
AbstractMap.SimpleImmutableEntry
public AbstractMap.SimpleImmutableEntry(K theKey,
V theValue)
AbstractMap.SimpleImmutableEntry
public AbstractMap.SimpleImmutableEntry(Map.Entry<? extends K,? extends V> copyFrom)
- Constructs an instance with the key and value of
copyFrom
.
getKey
public K getKey()
- Specified by:
getKey
in interface Map.Entry<K,V>
getValue
public V getValue()
- Specified by:
getValue
in interface Map.Entry<K,V>
setValue
public V setValue(V object)
- This base implementation throws
UnsupportedOperationException
always.
- Specified by:
setValue
in interface Map.Entry<K,V>
equals
public boolean equals(Object object)
- Specified by:
equals
in interface Map.Entry<K,V>
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Specified by:
hashCode
in interface Map.Entry<K,V>
- Overrides:
hashCode
in class Object
toString
public String toString()
- Overrides:
toString
in class Object
Copyright © 2013 4th Line GmbH, Switzerland. All Rights Reserved.