Class HashCommonMap<K,V>

java.lang.Object
org.apache.jena.mem2.collection.HashCommonBase<K>
org.apache.jena.mem2.collection.HashCommonMap<K,V>
All Implemented Interfaces:
JenaMap<K,V>, JenaMapSetCommon<K>
Direct Known Subclasses:
HashedBunchMap

public abstract class HashCommonMap<K,V> extends HashCommonBase<K> implements JenaMap<K,V>
Implementation of JenaMap based on HashCommonBase.
  • Method Details

    • clear

      public void clear(int initialCapacity)
    • tryPut

      public boolean tryPut(K key, V value)
      Description copied from interface: JenaMap
      Try to put a key-value pair into the map. If the key is already present, the value is updated.
      Specified by:
      tryPut in interface JenaMap<K,V>
      Parameters:
      key - the key to put
      value - the value to put
      Returns:
      true if the key-value pair was put into the map, false if the key was already present
    • put

      public void put(K key, V value)
      Description copied from interface: JenaMap
      Put a key-value pair into the map. If the key is already present, the value is updated.
      Specified by:
      put in interface JenaMap<K,V>
      Parameters:
      key - the key to put
      value - the value to put
    • get

      public V get(K key)
      Description copied from interface: JenaMap
      Get the value associated with the provided key.
      Specified by:
      get in interface JenaMap<K,V>
      Parameters:
      key - the key to look up
      Returns:
      the value associated with the key, or null if the key is not present
    • getOrDefault

      public V getOrDefault(K key, V defaultValue)
      Description copied from interface: JenaMap
      Get the value associated with the provided key, or a default value if the key is not present.
      Specified by:
      getOrDefault in interface JenaMap<K,V>
      Parameters:
      key - the key to look up
      defaultValue - the default value to return if the key is not present
      Returns:
      the value associated with the key, or the default value if the key is not present
    • computeIfAbsent

      public V computeIfAbsent(K key, Supplier<V> absentValueSupplier)
      Description copied from interface: JenaMap
      Compute a value for a key if the key is not present. The value is automatically put into the map.
      Specified by:
      computeIfAbsent in interface JenaMap<K,V>
      Parameters:
      key - the key whose value is to retrieved or computed
      absentValueSupplier - the function to compute a value for the key, if the key is not present
      Returns:
      the value associated with the key, or the value computed by the function if the key is not present
    • compute

      public void compute(K key, UnaryOperator<V> valueProcessor)
      Description copied from interface: JenaMap
      Compute a value for a key.
      Specified by:
      compute in interface JenaMap<K,V>
      Parameters:
      key - the key to compute a value for
      valueProcessor - the function to compute a value for the key. The function is passed the current value associated with the key, or null if the key is not present. The function should return the new value to associate with the key, or null if the key should be removed from the map.
    • valueIterator

      public ExtendedIterator<V> valueIterator()
      Description copied from interface: JenaMap
      Get an iterator over the values in the map.
      Specified by:
      valueIterator in interface JenaMap<K,V>
      Returns:
      an iterator over the values in the map
    • valueSpliterator

      public Spliterator<V> valueSpliterator()
      Description copied from interface: JenaMap
      Get a spliterator over the values in the map.
      Specified by:
      valueSpliterator in interface JenaMap<K,V>
      Returns:
      a spliterator over the values in the map