-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMapEntry.java
More file actions
46 lines (37 loc) · 900 Bytes
/
MapEntry.java
File metadata and controls
46 lines (37 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package thinkinginjava.containers;
// A simple Map.Entry for sample Map implementations.
import java.util.Map;
public class MapEntry<K, V> implements Map.Entry<K, V> {
private K key;
private V value;
public MapEntry(K key, V value) {
this.key = key;
this.value = value;
}
public K getKey() {
return key;
}
public V getValue() {
return value;
}
public V setValue(V v) {
V result = value;
value = v;
return result;
}
public int hashCode() {
return (key == null ? 0 : key.hashCode())
^ (value == null ? 0 : value.hashCode());
}
public boolean equals(Object o) {
if (!(o instanceof MapEntry))
return false;
MapEntry me = (MapEntry) o;
return (key == null ? me.getKey() == null : key.equals(me.getKey()))
&& (value == null ? me.getValue() == null : value.equals(me
.getValue()));
}
public String toString() {
return key + "=" + value;
}
}