0 By Nithya Vasudevan In EnumerationsPosted October 17, 2016Creating Enum variablesEven though enum is a class type, we do not use new keyword but create a variable just like a primitive type as follows. PizzaSize size; (Or) PizzaSize size = PizzaSize.LARGE; The main advantage [...] READ MORE