Interface IConvertibleMap<V>

    • Method Detail

      • put

        V put​(String key,
              V value)
        Parameters:
        key - Key for which to set the value.
        value - Value to associate with the key.
        Returns:
        The value previously associated with the key, or null if no value was associated yet.
      • get

        V get​(Object key)
        Parameters:
        key - Key for which to retrieve the value.
        Returns:
        The value associated with the key, null if no value exists.
      • clear

        void clear()