public class SeasonExample { public enum Season { WINTER, SPRING, SUMMER, FALL; } public static void main(String[] args) { int x = 26; for (Season s : Season.values()) { System.out.println(s); } assert x == 26 : "Assertion failed"; // Assert that x is 26 System.out.println(x); } }
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