public enum Day { MONDAY("Work Day"), TUESDAY("Work Day"), WEDNESDAY("Work Day"), THURSDAY("Work Day"), FRIDAY("Work Day"), SATURDAY("Weekend"), SUNDAY("Weekend"); private String typeOfDay; // Constructor Day(String typeOfDay) { this.typeOfDay = typeOfDay; } // Method to get the type of day public String getTypeOfDay() { return typeOfDay; } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter