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
Implementation of
JenaMap based on HashCommonBase.-
Method Summary
Modifier and TypeMethodDescriptionvoidclear(int initialCapacity) voidcompute(K key, UnaryOperator<V> valueProcessor) Compute a value for a key.computeIfAbsent(K key, Supplier<V> absentValueSupplier) Compute a value for a key if the key is not present.Get the value associated with the provided key.getOrDefault(K key, V defaultValue) Get the value associated with the provided key, or a default value if the key is not present.voidPut a key-value pair into the map.booleanTry to put a key-value pair into the map.Get an iterator over the values in the map.Get a spliterator over the values in the map.Methods inherited from class org.apache.jena.mem2.collection.HashCommonBase
anyMatch, containsKey, isEmpty, keyIterator, keySpliterator, removeUnchecked, size, tryRemoveMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.jena.mem2.collection.JenaMap
valueStream, valueStreamParallelMethods inherited from interface org.apache.jena.mem2.collection.JenaMapSetCommon
anyMatch, clear, containsKey, isEmpty, keyIterator, keySpliterator, keyStream, keyStreamParallel, removeUnchecked, size, tryRemove
-
Method Details
-
clear
public void clear(int initialCapacity) -
tryPut
Description copied from interface:JenaMapTry to put a key-value pair into the map. If the key is already present, the value is updated. -
put
Description copied from interface:JenaMapPut a key-value pair into the map. If the key is already present, the value is updated. -
get
Description copied from interface:JenaMapGet the value associated with the provided key. -
getOrDefault
Description copied from interface:JenaMapGet the value associated with the provided key, or a default value if the key is not present.- Specified by:
getOrDefaultin interfaceJenaMap<K,V> - Parameters:
key- the key to look updefaultValue- 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
Description copied from interface:JenaMapCompute a value for a key if the key is not present. The value is automatically put into the map.- Specified by:
computeIfAbsentin interfaceJenaMap<K,V> - Parameters:
key- the key whose value is to retrieved or computedabsentValueSupplier- 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
Description copied from interface:JenaMapCompute a value for a key.- Specified by:
computein interfaceJenaMap<K,V> - Parameters:
key- the key to compute a value forvalueProcessor- 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
Description copied from interface:JenaMapGet an iterator over the values in the map.- Specified by:
valueIteratorin interfaceJenaMap<K,V> - Returns:
- an iterator over the values in the map
-
valueSpliterator
Description copied from interface:JenaMapGet a spliterator over the values in the map.- Specified by:
valueSpliteratorin interfaceJenaMap<K,V> - Returns:
- a spliterator over the values in the map
-