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

Method iterator

vm/JavaAPI/src/java/util/Hashtable.java:411–420  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

409 }
410
411 @Override
412 public Iterator<Map.Entry<K, V>> iterator() {
413 return new HashIterator<Map.Entry<K, V>>(
414 new MapEntry.Type<Map.Entry<K, V>, K, V>() {
415 public Map.Entry<K, V> get(
416 MapEntry<K, V> entry) {
417 return entry;
418 }
419 });
420 }
421 }, this);
422 }
423

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.95

Tested by

no test coverage detected