Interface Get<K,​V>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean containsKey​(java.lang.Object key)
      Tests for presence of a given key.
      boolean containsValue​(java.lang.Object value)
      Tests for presence of a given value.
      java.util.Set<java.util.Map.Entry<K,​V>> entrySet()
      Gets a set view of the mappings contained in this map.
      V get​(java.lang.Object key)
      Gets a value at a given key.
      boolean isEmpty()
      Tests whether this instance contains any key-value mappings.
      java.util.Set<K> keySet()
      Gets a view of the keys contained in this map.
      V remove​(java.lang.Object key)
      Remove a key-value mappings.
      int size()
      Gets the number of key-value mappings in this map.
      java.util.Collection<V> values()
      Gets a a collection view of the values contained in this map.
    • Method Detail

      • containsKey

        boolean containsKey​(java.lang.Object key)
        Tests for presence of a given key.
        Parameters:
        key - key whose presence in this map is to be tested
        Returns:
        true if this map contains a mapping for the specified key
        See Also:
        Map.containsKey(Object)
      • containsValue

        boolean containsValue​(java.lang.Object value)
        Tests for presence of a given value.
        Parameters:
        value - value whose presence in this map is to be tested
        Returns:
        true if this map maps one or more keys to the specified value
        See Also:
        Map.containsValue(Object)
      • entrySet

        java.util.Set<java.util.Map.Entry<K,​V>> entrySet()
        Gets a set view of the mappings contained in this map.
        Returns:
        a set view of the mappings contained in this map.
        See Also:
        Map.entrySet()
      • get

        V get​(java.lang.Object key)
        Gets a value at a given key.
        Parameters:
        key - the key whose associated value is to be returned
        Returns:
        the value to which the specified key is mapped, or null if this map contains no mapping for the key
        See Also:
        Map.get(Object)
      • isEmpty

        boolean isEmpty()
        Tests whether this instance contains any key-value mappings.
        Returns:
        true if this map contains no key-value mappings
        See Also:
        Map.isEmpty()
      • keySet

        java.util.Set<KkeySet()
        Gets a view of the keys contained in this map.
        Returns:
        a set view of the keys contained in this map
        See Also:
        Map.keySet()
      • remove

        V remove​(java.lang.Object key)
        Remove a key-value mappings.
        Parameters:
        key - key whose mapping is to be removed from the map
        Returns:
        the previous value associated with key, or null if there was no mapping for key.
        See Also:
        Map.remove(Object)
      • size

        int size()
        Gets the number of key-value mappings in this map.
        Returns:
        the number of key-value mappings in this map.
        See Also:
        Map.size()
      • values

        java.util.Collection<Vvalues()
        Gets a a collection view of the values contained in this map.
        Returns:
        a collection view of the values contained in this map.
        See Also:
        Map.values()