MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / show

Method show

onjava/HTMLColors.java:189–193  ·  view source on GitHub ↗
(Map.Entry<Integer,String> e)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 6

formatMethod · 0.45
getKeyMethod · 0.45
getValueMethod · 0.45
streamMethod · 0.45
entrySetMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected