public class MapEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>
Map.Entry
implementation. Both key and the value can be
modified.Modifier and Type | Method and Description |
---|---|
static <T,R> MapEntry<T,R> |
create(T key,
R value) |
static <T,R> MapEntry<T,R> |
createUnmodifiable(T key,
R value) |
boolean |
equals(java.lang.Object obj) |
K |
getKey() |
V |
getValue() |
int |
hashCode() |
K |
setKey(K key) |
V |
setValue(V value) |
Copyright © 2003-present Jodd Team