Thanks Jon, Filed: https://bugs.openjdk.java.net/browse/JDK-8156984 -Robert On 05/13/16 17:35, Jonathan Gibbons wrote: > This pattern: > > 122 for (FormatCase e : EnumSet.allOf(FormatCase.class)) > > > is more simply written as > > 122 for (FormatCase e : FormatCase.values()) > > > -- Jon > > >