package com.tofvesson.collections; import java.util.Collection; import java.util.Map; import java.util.Set; @SuppressWarnings("ALL") /** * Map that shifts (and deletes overflowing values) as new values are added. * Does not support null keys. */ public class ShiftingMap implements Map { private final ShiftingList> entries; public ShiftingMap(int maxSize, float load){ entries = new ShiftingList>(maxSize, load); } public ShiftingMap(int maxSize){ this(maxSize, 0.75f); } public int size() { return entries.pop; } public boolean isEmpty() { return entries.pop==0; } public boolean containsKey(Object key) { return false; } public boolean containsValue(Object value) { return false; } public V get(Object key) { return null; } public V put(K key, V value) { return null; } public V remove(Object key) { return null; } public void putAll(Map m) { } public void clear() { } public Set keySet() { return null; } public Collection values() { return null; } public Set> entrySet() { return null; } }