Skip to content

Instantly share code, notes, and snippets.

@cosminpopescu14
Created September 30, 2020 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosminpopescu14/901e3d72811b94dbf86e867f549c5285 to your computer and use it in GitHub Desktop.
Save cosminpopescu14/901e3d72811b94dbf86e867f549c5285 to your computer and use it in GitHub Desktop.
package com.company;
import java.util.AbstractMap;
import java.util.Map;
import java.util.Set;
public class ArrayMap<K, V> extends AbstractMap<K,V> implements Map.Entry<K,V> {
@Override
public Set<Entry<K, V>> entrySet() {
return null;
}
@Override
public K getKey() {
return null;
}
@Override
public V getValue() {
return null;
}
@Override
public V setValue(V value) {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment