Class IndexedMap<K,​V>

java.lang.Object
net.thevpc.echo.jfx.util.IndexedMap<K,​V>

public class IndexedMap<K,​V>
extends java.lang.Object
Author:
vpc
  • Constructor Summary

    Constructors
    Constructor Description
    IndexedMap()  
  • Method Summary

    Modifier and Type Method Description
    V add​(K k, V v)  
    boolean containsKey​(K k)  
    V get​(K k)  
    K getKeyAt​(int index)  
    V getValueAt​(int index)  
    V remove​(K k)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • IndexedMap

      public IndexedMap()
  • Method Details

    • containsKey

      public boolean containsKey​(K k)
    • getKeyAt

      public K getKeyAt​(int index)
    • getValueAt

      public V getValueAt​(int index)
    • get

      public V get​(K k)
    • remove

      public V remove​(K k)
    • add

      public V add​(K k, V v)