public static Stream<Integer> setStream() { if(setValues==null) { setValues = new HashSet<>(); for (int c = 0; c < COUNT; c++) { setValues.add(c); } } return setValues.stream(); }