Implemented UI, fixed serialization inconsistency

This commit is contained in:
2023-09-25 19:00:21 +03:00
parent 338ed053e3
commit 24d671f765
19 changed files with 365 additions and 153 deletions

View File

@@ -0,0 +1,26 @@
package org.lumijiez.enums;
public enum StudyField {
MECHANICAL_ENGINEERING("Mechanical Engineering", "ME"),
SOFTWARE_ENGINEERING("Software Engineering", "FAF"),
FOOD_TECHNOLOGY("Food Technology", "FT"),
URBANISM_ARCHITECTURE("Urbanism and Architecture", "UA"),
VETERINARY_MEDICINE("Veterinary Medicine", "VE");
private final String name;
private final String abbreviation;
StudyField(String name, String abbreviation) {
this.name = name;
this.abbreviation = abbreviation;
}
public String getName() {
return name;
}
public String getAbbreviation() {
return abbreviation;
}
}