(Map.Entry<Integer,String> e)
| 187 | .map(item -> (Integer)item[0]) |
| 188 | .collect(Collectors.toList()); |
| 189 | public static |
| 190 | void show(Map.Entry<Integer,String> e) { |
| 191 | System.out.format( |
| 192 | "0x%06X: %s%n", e.getKey(), e.getValue()); |
| 193 | } |
| 194 | public static void |
| 195 | show(Map<Integer,String> m, int count) { |
| 196 | m.entrySet().stream() |