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

Method hasNext

collections/IterableClass.java:15–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13 return new Iterator<String>() {
14 private int index = 0;
15 @Override public boolean hasNext() {
16 return index < words.length;
17 }
18 @Override
19 public String next() { return words[index++]; }
20 @Override

Callers 7

mainMethod · 0.45
displayMethod · 0.45
displayMethod · 0.45
displayMethod · 0.45
mainMethod · 0.45
iterMotionMethod · 0.45
mainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected