package enumerations.uebung; enum GiftStufe {KEINE, MITTEL, HOCH} enum Fluessigkeit { WASSER(0.998, GiftStufe.KEINE), QUECKSILBER(13.54, GiftStufe.HOCH), PETROLEUM(0.81, GiftStufe.MITTEL); private double mDichte; private GiftStufe mGiftStufe; Fluessigkeit(double pDichte, GiftStufe pGiftStufe) { mDichte = pDichte; mGiftStufe = pGiftStufe; } }