MCPcopy Create free account
hub / github.com/antlr/codebuff / endOfData

Method endOfData

output/java_guava/1.4.19/AbstractIterator.java:136–140  ·  view source on GitHub ↗

Implementations of #computeNext must invoke this method when there are no elements left in the iteration. @return null; a convenience so your computeNext implementation can use the simple statement return endOfData();

()

Source from the content-addressed store, hash-verified

134 */
135
136 @CanIgnoreReturnValue
137 protected final T endOfData() {
138 state = State.DONE;
139 return null;
140 }
141
142 @CanIgnoreReturnValue // TODO(kak): Should we remove this? Some people are using it to prefetch?
143 @Override

Callers 15

computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45
computeNextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected