public class DaysOfTheWeek { public enum Days {m, t, w, r, f, sat, s}; public static void main(String[] args) { Days d = Days.t; System.out.println(d); //the output would be t } }