Class AbstractFloat2ObjectSortedMap<V>
- All Implemented Interfaces:
Float2ObjectFunction<V>,Float2ObjectMap<V>,Float2ObjectSortedMap<V>,Function<Float,,V> Serializable,DoubleFunction<V>,Function<Float,,V> Map<Float,,V> SortedMap<Float,V>
- Direct Known Subclasses:
Float2ObjectAVLTreeMap,Float2ObjectLinkedOpenHashMap,Float2ObjectRBTreeMap
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2ObjectMap
AbstractFloat2ObjectMap.BasicEntry<V>, AbstractFloat2ObjectMap.BasicEntrySet<V>Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.floats.Float2ObjectMap
Float2ObjectMap.Entry<V>, Float2ObjectMap.FastEntrySet<V>Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.floats.Float2ObjectSortedMap
Float2ObjectSortedMap.FastSortedEntrySet<V> -
Method Summary
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2ObjectMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toStringMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2ObjectFunction
defaultReturnValue, defaultReturnValueMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2ObjectFunction
andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, apply, compose, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort, get, put, removeMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2ObjectMap
clear, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentPartial, computeIfPresent, containsKey, containsKey, defaultReturnValue, defaultReturnValue, forEach, get, getOrDefault, getOrDefault, merge, put, putIfAbsent, remove, remove, replace, replace, sizeMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2ObjectSortedMap
comparator, entrySet, firstFloatKey, firstKey, float2ObjectEntrySet, headMap, headMap, lastFloatKey, lastKey, subMap, subMap, tailMap, tailMapMethods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
-
Method Details
-
keySet
Returns a type-specific-set view of the keys of this map.The view is backed by the set returned by
Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.The view is backed by the sorted set returned by
Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
keySetin interfaceFloat2ObjectMap<V>- Specified by:
keySetin interfaceFloat2ObjectSortedMap<V>- Specified by:
keySetin interfaceMap<Float,V> - Specified by:
keySetin interfaceSortedMap<Float,V> - Overrides:
keySetin classAbstractFloat2ObjectMap<V>- Returns:
- a sorted set view of the keys of this map; it may be safely cast to a type-specific interface.
- See Also:
-
values
Returns a type-specific-set view of the values of this map.The view is backed by the set returned by
Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.The view is backed by the sorted set returned by
Map.entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
valuesin interfaceFloat2ObjectMap<V>- Specified by:
valuesin interfaceFloat2ObjectSortedMap<V>- Specified by:
valuesin interfaceMap<Float,V> - Specified by:
valuesin interfaceSortedMap<Float,V> - Overrides:
valuesin classAbstractFloat2ObjectMap<V>- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
-