Style suggestion

Jonathan Gibbons jonathan.gibbons at oracle.com
Sat May 14 00:35:40 UTC 2016


This pattern:

  122         for (FormatCase e : EnumSet.allOf(FormatCase.class))


is more simply written as

  122         for (FormatCase e : FormatCase.values())


-- Jon





More information about the kulla-dev mailing list