Class IndexedMap<K,V>

java.lang.Object
net.thevpc.common.collections.IndexedMap<K,V>

public class IndexedMap<K,V> extends Object
Author:
thevpc
  • Constructor Details

    • IndexedMap

      public IndexedMap()
  • Method Details

    • getValueAt

      public V getValueAt(int i)
    • clear

      public void clear()
    • indexOfKey

      public int indexOfKey(K key)
    • get

      public V get(K key)
    • getKeyAt

      public K getKeyAt(int i)
    • keySet

      public Set<K> keySet()
    • entrySet

      public Set<Map.Entry<K,V>> entrySet()
    • values

      public Collection<V> values()
    • size

      public int size()
    • remove

      public V remove(K key)
    • put

      public V put(K key, V value)