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

  • Method Details

    • containsKey

      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

      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

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

      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

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

      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

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

      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

      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

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

      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

      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

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

      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: