class EnumTest { enum Farbe {weiss, rot, gruen, blau, gelb, pink, schwarz}; enum Wochentag {Mo, Di, Mi, Do, Fr, Sa, So}; public static void main(String args[]) { Farbe bild = Farbe.rot; Wochentag tag = Wochentag.Mo; if ((tag == Wochentag.Sa)||(tag == Wochentag.So)) System.out.println("Kein Arbeitstag"); for (Wochentag t : Wochentag.values() ) System.out.println(t); for (Farbe f : Farbe.values() ) System.out.println(f); } }