MCPcopy Create free account
hub / github.com/ReadyTalk/avian / MyEntryMap

Class MyEntryMap

classpath/java/util/HashMap.java:234–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 }
233
234 private class MyEntryMap implements Data.EntryMap<K, V> {
235 public int size() {
236 return HashMap.this.size();
237 }
238
239 public Entry<K,V> find(Object key) {
240 return HashMap.this.find(key);
241 }
242
243 public Entry<K,V> remove(Object key) {
244 return removeCell(key);
245 }
246
247 public void clear() {
248 HashMap.this.clear();
249 }
250
251 public Iterator<Entry<K,V>> iterator() {
252 return HashMap.this.iterator();
253 }
254 }
255
256 interface Cell<K, V> extends Entry<K, V> {
257 public HashMap.Cell<K, V> next();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected