MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / iterator

Method iterator

Ports/CLDC11/src/java/util/Hashtable.java:429–438  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

427 }
428
429 @Override
430 public Iterator<Map.Entry<K, V>> iterator() {
431 return new HashIterator<Map.Entry<K, V>>(
432 new MapEntry.Type<Map.Entry<K, V>, K, V>() {
433 public Map.Entry<K, V> get(
434 MapEntry<K, V> entry) {
435 return entry;
436 }
437 });
438 }
439 }, this);
440 }
441

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.95

Tested by

no test coverage detected