Я делаю диспетчерскую (диспетчерскую) программу. Хотя мне удалось создать метод "addReport", у меня есть проблемы с отображением всех отчетов (переход по карте). Я думаю, что каждый раз, когда я пытаюсь добавить новые элементы, они заменяются, потому что идентификатор (UUID) один и тот же. Как вы думаете, или, может быть, это что-то другое?
public class Dispatching {
private String identificator;
private Map<String, Report> reportMap;
public Dispatching() {
this.identificator = UUID.randomUUID().toString();
this.reportMap = new HashMap<>();
}
void addReport(String message, ReportType type) {
reportMap.put(identificator, new Report(type, message, LocalTime.now()));
}
void showReports() {
for (Map.Entry element : reportMap.entrySet()) {
System.out.println("uuid: " + element.getKey().toString()
+ " " + element.getValue().toString());
}
}
}
public class Report {
ReportType reportType;
String reportMessage;
LocalTime reportTime;
public Report(ReportType reportType, String reportMessage, LocalTime reportTime) {
this.reportType = reportType;
this.reportMessage = reportMessage;
this.reportTime = reportTime;
}
@Override
public String toString() {
return "Report{" +
"reportType=" + reportType +
", reportMessage='" + reportMessage + '\'' +
", reportTime=" + reportTime +
'}';
}
}
public class Main {
public static void main(String[] args) {
Dispatching dispatching = new Dispatching();
dispatching.addReport("heeeeelp",ReportType.AMBULANCE);
dispatching.addReport("poliiiice",ReportType.POLICE);
dispatching.addReport("treeee",ReportType.OTHER);
dispatching.showReports();
}
}
public enum ReportType {
AMBULANCE,
POLICE,
FIRE_BRIGADE,
ACCIDENT,
OTHER
}