Class KeyValueMap<T>

    • Constructor Detail

      • KeyValueMap

        public KeyValueMap()
    • Method Detail

      • get

        public T get​(String key)
        Get an item from the map.
        Parameters:
        key - The key of the item.
        Returns:
        The item or null.
      • put

        public void put​(String key,
                        T value)
        Put an item in the map
        Parameters:
        key - The key of the item.
        value - The value
      • remove

        public T remove​(String key)
        Remove an item from the map
        Parameters:
        key - The key of the item.
        Returns:
        The previously stored value for the key or null.
        Since:
        1.1
      • putAll

        public void putAll​(KeyValueMap<T> map)
        Put all items from the other map in this map
        Parameters:
        map - The other map
      • isEmpty

        public boolean isEmpty()
        Check whether this map is empty.
        Returns:
        true if the map is empty.
      • size

        public int size()
        Get the size of the map.
        Returns:
        The size of the map.
        Since:
        1.1
      • clear

        public void clear()
        Clear the map
        Since:
        1.7