backend/buisnesslogic/src/main/java/com/plannaplan/types/GroupType.java
Marcin Woźniak fe06243bda
Added new enums and desription
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2021-01-06 11:38:16 +01:00

23 lines
609 B
Java
Executable File

package com.plannaplan.types;
/**
* GroupType contains types: LECTURE, CLASS, LAB, SEMINAR, CONSERVATORY, PRATICE
*/
public enum GroupType {
LECTURE("Wykład"), CLASS("Ćwiczenia"), LAB("Laboratorium"), SEMINAR("Seminarium"),CONSERVATORY("Konwersatorium"), PRATICE("Praktyka");
public final String type;
private GroupType(String type) {
this.type = type;
}
public final static GroupType getType(String type) {
for (GroupType d : values()) {
if (d.type.equals(type)) {
return d;
}
}
return null;
}
}