Interface MapGenotype<K,​V>

    • Method Detail

      • getKeys

        Collection<K> getKeys()
        Return all keys.
        Returns:
        all keys
      • getValue

        V getValue​(K key)
        Returns the value for the specified key.
        Parameters:
        key - the key
        Returns:
        the value
        See Also:
        setValue(K, V)
      • setValue

        void setValue​(K key,
                      V value)
        Sets the value for the specified key.
        Parameters:
        key - the key
        value - the value
        See Also:
        getValue(K)
      • containsKey

        boolean containsKey​(K key)
        Returns true if the key is contained.
        Parameters:
        key - the key
        Returns:
        true if the key is contained
      • getIndexOf

        int getIndexOf​(K key)
        Returns the index of the key.
        Parameters:
        key - the key
        Returns:
        the index