public class MainClass { enum Spice { A, B, C, D; } public static void main(String[] argv) { Object ob = new Object(); Spice sp = (Spice) ob; } }