Java java.util Map.Entry fields, constructors, methods, implement or subclass

Example usage for Java java.util Map.Entry fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util Map.Entry.

The text is from its open source code.

Implementation

java.util.Map.Entry has the following implementations.
Click this link to see all its implementation.

Constructor

Method

booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleanequals(Object o)
Compares the specified object with this map for equality.
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
ClassgetClass()
Returns the runtime class of this Object .
inthashCode()
Returns the hash code value for this map.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
Vput(K key, V value)
Associates the specified value with the specified key in this map (optional operation).
StringtoString()
Returns a string representation of the object.
Collectionvalues()
Returns a Collection view of the values contained in this map.