Package it.unimi.dsi.fastutil.objects
Class Object2ObjectMaps.UnmodifiableMap<K,V>
java.lang.Object
it.unimi.dsi.fastutil.objects.AbstractObject2ObjectFunction<K,V>
it.unimi.dsi.fastutil.objects.Object2ObjectFunctions.UnmodifiableFunction<K,V>
it.unimi.dsi.fastutil.objects.Object2ObjectMaps.UnmodifiableMap<K,V>
- All Implemented Interfaces:
Function<K,,V> Object2ObjectFunction<K,,V> Object2ObjectMap<K,,V> Serializable,Function<K,,V> Map<K,V>
- Direct Known Subclasses:
Object2ObjectSortedMaps.UnmodifiableSortedMap
- Enclosing class:
Object2ObjectMaps
public static class Object2ObjectMaps.UnmodifiableMap<K,V>
extends Object2ObjectFunctions.UnmodifiableFunction<K,V>
implements Object2ObjectMap<K,V>, Serializable
An unmodifiable wrapper class for maps.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2ObjectMap
Object2ObjectMap.Entry<K,V>, Object2ObjectMap.FastEntrySet<K, V> -
Method Summary
Modifier and TypeMethodDescriptionAttempts to compute a mapping for the specified key and its current mapped value (ornullif there is no current mapping).computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) If the value for the specified key is present, attempts to compute a new mapping given the key and its current mapped value.booleanentrySet()Returns a set view of the mappings contained in this map.booleanvoidforEach(BiConsumer<? super K, ? super V> action) getOrDefault(Object key, V defaultValue) Returns the value associated by this function to the specified key, or give the specified value if not present.inthashCode()booleanisEmpty()keySet()If the specified key is not already associated with a value, associates it with the givenvalue.Returns a type-specific set view of the mappings contained in this map.voidputIfAbsent(K key, V value) If the specified key is not already associated with a value, associates it with the given value and returns the default return value, else returns the current value.booleanRemoves the entry for the specified key only if it is currently mapped to the specified value.Replaces the entry for the specified key only if it is currently mapped to some value.booleanReplaces the entry for the specified key only if currently mapped to the specified value.voidreplaceAll(BiFunction<? super K, ? super V, ? extends V> function) values()Methods inherited from class it.unimi.dsi.fastutil.objects.Object2ObjectFunctions.UnmodifiableFunction
clear, containsKey, defaultReturnValue, defaultReturnValue, get, put, remove, size, toStringMethods inherited from interface java.util.Map
computeIfAbsent, getMethods inherited from interface it.unimi.dsi.fastutil.objects.Object2ObjectFunction
andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort, getMethods inherited from interface it.unimi.dsi.fastutil.objects.Object2ObjectMap
clear, computeIfAbsent, computeObjectIfAbsentPartial, containsKey, defaultReturnValue, defaultReturnValue, put, remove, size
-
Method Details
-
containsValue
- Specified by:
containsValuein interfaceMap<K,V>
-
putAll
-
object2ObjectEntrySet
Description copied from interface:Object2ObjectMapReturns a type-specific set view of the mappings contained in this map.This method is necessary because there is no inheritance along type parameters: it is thus impossible to strengthen
Map.entrySet()so that it returns anObjectSetof type-specific entries (the latter makes it possible to access keys and values with type-specific methods).- Specified by:
object2ObjectEntrySetin interfaceObject2ObjectMap<K,V> - Returns:
- a type-specific set view of the mappings contained in this map.
- See Also:
-
entrySet
Returns a set view of the mappings contained in this map. -
keySet
Description copied from interface:Object2ObjectMap -
values
Description copied from interface:Object2ObjectMap -
isEmpty
public boolean isEmpty() -
hashCode
public int hashCode() -
equals
-
getOrDefault
Description copied from interface:Object2ObjectFunctionReturns the value associated by this function to the specified key, or give the specified value if not present.- Specified by:
getOrDefaultin interfaceFunction<K,V> - Specified by:
getOrDefaultin interfaceMap<K,V> - Specified by:
getOrDefaultin interfaceObject2ObjectFunction<K,V> - Specified by:
getOrDefaultin interfaceObject2ObjectMap<K,V> - Overrides:
getOrDefaultin classObject2ObjectFunctions.UnmodifiableFunction<K,V> - Parameters:
key- the key.defaultValue- the value to return if not present.- Returns:
- the corresponding value, or
defaultValueif no value was present for the given key. - See Also:
-
forEach
-
replaceAll
- Specified by:
replaceAllin interfaceMap<K,V>
-
putIfAbsent
Description copied from interface:Object2ObjectMapIf the specified key is not already associated with a value, associates it with the given value and returns the default return value, else returns the current value.- Specified by:
putIfAbsentin interfaceMap<K,V> - Specified by:
putIfAbsentin interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the specified value is to be associated.value- value to be associated with the specified key.- Returns:
- the previous value associated with the specified key, or the default return value if there was no mapping for the key.
- See Also:
-
remove
Description copied from interface:Object2ObjectMapRemoves the entry for the specified key only if it is currently mapped to the specified value. -
replace
Description copied from interface:Object2ObjectMapReplaces the entry for the specified key only if it is currently mapped to some value.- Specified by:
replacein interfaceMap<K,V> - Specified by:
replacein interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the specified value is associated.value- value to be associated with the specified key.- Returns:
- the previous value associated with the specified key, or the default return value if there was no mapping for the key.
- See Also:
-
replace
Description copied from interface:Object2ObjectMapReplaces the entry for the specified key only if currently mapped to the specified value.- Specified by:
replacein interfaceMap<K,V> - Specified by:
replacein interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the specified value is associated.oldValue- value expected to be associated with the specified key.newValue- value to be associated with the specified key.- Returns:
trueif the value was replaced.- See Also:
-
computeIfPresent
Description copied from interface:Object2ObjectMapIf the value for the specified key is present, attempts to compute a new mapping given the key and its current mapped value.- Specified by:
computeIfPresentin interfaceMap<K,V> - Specified by:
computeIfPresentin interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the specified value is to be associated.remappingFunction- the function to compute a value.- Returns:
- the new value associated with the specified key, or the default return value if none.
- See Also:
-
compute
Description copied from interface:Object2ObjectMapAttempts to compute a mapping for the specified key and its current mapped value (ornullif there is no current mapping).If the function returns
null, the mapping is removed (or remains absent if initially absent). If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.- Specified by:
computein interfaceMap<K,V> - Specified by:
computein interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the specified value is to be associated.remappingFunction- the function to compute a value.- Returns:
- the new value associated with the specified key, or the default return value if none.
- See Also:
-
merge
Description copied from interface:Object2ObjectMapIf the specified key is not already associated with a value, associates it with the givenvalue. Otherwise, replaces the associated value with the results of the given remapping function, or removes if the result isnull.- Specified by:
mergein interfaceMap<K,V> - Specified by:
mergein interfaceObject2ObjectMap<K,V> - Parameters:
key- key with which the resulting value is to be associated.value- the value to be merged with the existing value associated with the key or, if no existing value is associated with the key, to be associated with the key.remappingFunction- the function to recompute a value if present.- Returns:
- the new value associated with the specified key, or the default return value if no value is associated with the key.
- See Also:
-