enum Problem { BIG, HUGE, SMALL } // this cannot be private or protected class MyClass { Problem size; } public class MainClass { public static void main(String[] args) { MyClass drink = new MyClass(); drink.size = Problem.BIG; } }