-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImmutableClassIn.java
47 lines (36 loc) · 1.26 KB
/
ImmutableClassIn.java
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
47
import java.util.Map;
import java.util.HashMap;
final class Student {
private final String name;
private final int regNo;
private final Map<String, String> metadata;
public Student(String name, int regNo,
Map<String, String> metadata) {
this.name = name;
this.regNo = regNo;
this.metadata = this.cloneMap(metadata);
}
public String getName() { return name; }
public int getRegNo() { return regNo; }
public Map<String, String> getMetadata() {
return this.cloneMap(this.metadata);
}
private Map<String, String> cloneMap(
Map<String, String> metadata) {
Map<String, String> tempMap = new HashMap<>();
for (Map.Entry<String, String> entry :
metadata.entrySet()) {
tempMap.put(entry.getKey(), entry.getValue());
}
return tempMap;
}
public static void main(String[] args) {
Map<String,String> metadata = new HashMap<>();
metadata.put("City", "Vallentuna");
metadata.put("Company", "Truesec");
Student student = new Student("Johan", 1234, metadata);
metadata.remove("Company");
String company = student.getMetadata().get("Company");
System.out.println(company);
}
}