debut MPD

This commit is contained in:
2022-11-12 19:19:37 +01:00
parent fcf32a2ec0
commit 6c20bfcdf2
8 changed files with 145 additions and 55 deletions

View File

@@ -7,4 +7,15 @@ public enum TypeGroupe {
private TypeGroupe(String s) {
name = s;
}
public static TypeGroupe getType(String s){
switch(s){
case("Tous les étudiants"):
return TypeGroupe.ROOT;
case("partition"):
return TypeGroupe.PARTITION;
case("libre"):
return TypeGroupe.FREE;
default: return null;
}
}
}