-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaGenMUB19.java
More file actions
38 lines (28 loc) · 997 Bytes
/
JavaGenMUB19.java
File metadata and controls
38 lines (28 loc) · 997 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
import java.util.HashMap;
import java.util.Map;
public class JavaGenMUB19<T extends HashMap<String, Number> & Map<String, Number>> {
T value;
public JavaGenMUB19(T value) {
this.value = value;
}
public T getValue() {
return value;
}
public void setValue(T value) {
this.value = value;
}
public static void main(String[] args) {
HashMap<String, Number> map = new HashMap<>();
JavaGenMUB19<HashMap<String, Number>> obj = new JavaGenMUB19<>(map);
obj.getValue().put("One", 1);
obj.getValue().put("Two", 2);
obj.getValue().put("Three", 3);
obj.getValue().put("Four", 4);
System.out.println(obj.getValue());
obj.setValue(map);
obj.getValue().put("FloatingVal1", 1.02f);
obj.getValue().put("FloatingVal2", 2.02009);
obj.getValue().put("FloatingVal3", 3);
System.out.println(obj.getValue());
}
}