Class AbstractIterableGetMapDecorator<K,V>

java.lang.Object
org.apache.commons.collections4.splitmap.AbstractIterableGetMapDecorator<K,V>
Type Parameters:
K - the type of the keys in this map
V - the type of the values in this map
All Implemented Interfaces:
Get<K,V>, IterableGet<K,V>
Direct Known Subclasses:
TransformedSplitMap

public class AbstractIterableGetMapDecorator<K,V> extends Object implements IterableGet<K,V>
IterableGet that uses a Map<K, V> for the Get<K, V> implementation.
Since:
4.0
  • Constructor Details Link icon

  • Method Details Link icon

    • containsKey Link icon

      public boolean containsKey(Object key)
      Description copied from interface: Get
      Tests for presence of a given key.
      Specified by:
      containsKey in interface Get<K,V>
      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:
    • containsValue Link icon

      public boolean containsValue(Object value)
      Description copied from interface: Get
      Tests for presence of a given value.
      Specified by:
      containsValue in interface Get<K,V>
      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:
    • decorated Link icon

      protected Map<K,V> decorated()
      Gets the map being decorated.
      Returns:
      the decorated map
    • entrySet Link icon

      public Set<Map.Entry<K,V>> entrySet()
      Description copied from interface: Get
      Gets a set view of the mappings contained in this map.
      Specified by:
      entrySet in interface Get<K,V>
      Returns:
      a set view of the mappings contained in this map.
      See Also:
    • equals Link icon

      public boolean equals(Object object)
      Overrides:
      equals in class Object
    • get Link icon

      public V get(Object key)
      Description copied from interface: Get
      Gets a value at a given key.
      Specified by:
      get in interface Get<K,V>
      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:
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object
    • isEmpty Link icon

      public boolean isEmpty()
      Description copied from interface: Get
      Tests whether this instance contains any key-value mappings.
      Specified by:
      isEmpty in interface Get<K,V>
      Returns:
      true if this map contains no key-value mappings
      See Also:
    • keySet Link icon

      public Set<K> keySet()
      Description copied from interface: Get
      Gets a view of the keys contained in this map.
      Specified by:
      keySet in interface Get<K,V>
      Returns:
      a set view of the keys contained in this map
      See Also:
    • mapIterator Link icon

      Gets a MapIterator over this Get.
      Specified by:
      mapIterator in interface IterableGet<K,V>
      Returns:
      MapIterator<K, V>
    • remove Link icon

      public V remove(Object key)
      Description copied from interface: Get
      Remove a key-value mappings.
      Specified by:
      remove in interface Get<K,V>
      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:
    • size Link icon

      public int size()
      Description copied from interface: Get
      Gets the number of key-value mappings in this map.
      Specified by:
      size in interface Get<K,V>
      Returns:
      the number of key-value mappings in this map.
      See Also:
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • values Link icon

      public Collection<V> values()
      Description copied from interface: Get
      Gets a a collection view of the values contained in this map.
      Specified by:
      values in interface Get<K,V>
      Returns:
      a collection view of the values contained in this map.
      See Also: