Interface DiscreteMapping<K,​V>

    • Method Detail

      • getMapValue

        V getMapValue​(K key)
        Gets Value for Specified Key.
        Parameters:
        key - String Key.
        Returns:
        Object.
      • putMapValue

        <T extends V> void putMapValue​(K key,
                                       T value)
        Puts New Key/Value in Map.
        Parameters:
        key - Key Object.
        value - Value Object.
      • putAll

        <T extends V> void putAll​(Map<K,​T> map)
        Adds All Members of Specified Map.
        Parameters:
        map - Map.
      • getAll

        Map<K,​V> getAll()
        Gets all map values.
        Returns:
        all map values.