Package com.google.common.collect
Class AbstractMapEntry<K,V>
- java.lang.Object
-
- com.google.common.collect.AbstractMapEntry<K,V>
-
- All Implemented Interfaces:
java.util.Map.Entry<K,V>
- Direct Known Subclasses:
CompactHashMap.MapEntry
,ImmutableEntry
,LinkedListMultimap.Node
,MapMakerInternalMap.WriteThroughEntry
,TreeRangeMap.RangeMapEntry
abstract class AbstractMapEntry<K,V> extends java.lang.Object implements java.util.Map.Entry<K,V>
Implementation of theequals
,hashCode
, andtoString
methods ofEntry
.
-
-
Constructor Summary
Constructors Constructor Description AbstractMapEntry()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object object)
abstract K
getKey()
abstract V
getValue()
int
hashCode()
V
setValue(V value)
java.lang.String
toString()
Returns a string representation of the form{key}={value}
.
-