MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / next

Method next

src/SingletonList.java:224–231  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

222 }
223
224 @Override
225 public E next() {
226 if (returned) {
227 throw new NoSuchElementException();
228 }
229 returned = true;
230 return element;
231 }
232
233 @Override
234 public boolean hasPrevious() {

Calls

no outgoing calls