K - the key typeV - the value typepublic abstract class MapEntry<K,V>
extends java.lang.Object
A map entry contains a copy of the data in the corresponding map index. It does not reflect the changes made to the map since this entry had been created.
| Constructor and Description |
|---|
MapEntry() |
| Modifier and Type | Method and Description |
|---|---|
abstract K |
getKey()
Returns the key in this entry.
|
abstract V |
getValue()
Returns the value in this entry.
|
Copyright © 2018 Exonum. All rights reserved.