//Deklaration
public static enum Aufzaehlung {
Erstens, Zweitens, Drittens
};
//Alle Elemente durchlaufen
for (Aufzaehlung az : Aufzaehlung.values()) {
//Textausgabe (Erstens, Zweitens, Drittens)
System.out.println(az.toString());
//Nummerische Ausgabe (0, 1, 2)
System.out.println(az.ordinal());
}
Keine Kommentare:
Kommentar veröffentlichen