enum LightState { RED, YELLOW, GREEN; public static void main(String[] argv) { System.out.println(LightState.RED.toString()); } }