A public class MainClass { enum Animals { LION(450), TIGER(450), DOG; int weight; Animals() { } Animals(int w) { weight = w; } } public static void main(String[] argv) { try { Animals.DOG.wait(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }