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, andtoStringmethods ofEntry.
-
-
Constructor Summary
Constructors Constructor Description AbstractMapEntry()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object object)abstract KgetKey()abstract VgetValue()inthashCode()VsetValue(V value)java.lang.StringtoString()Returns a string representation of the form{key}={value}.
-