rename packages lower case

This commit is contained in:
2026-04-13 16:00:11 +02:00
parent f79b511843
commit 58a8002eb4
43 changed files with 127 additions and 140 deletions

View File

@@ -0,0 +1,19 @@
package server;
public enum Era {
I,
II,
III,
FINAL;
public Era next() {
Era[] eras = values();
// Calcola l'indice del prossimo elemento
int nextOrdinal = this.ordinal() + 1;
if (nextOrdinal < eras.length) {
return eras[nextOrdinal];
}
return this;
}
}