Class AbstractFloat2IntSortedMap
- All Implemented Interfaces:
Float2IntFunction,Float2IntMap,Float2IntSortedMap,Function<Float,Integer>,Serializable,DoubleToIntFunction,Function<Float,Integer>,Map<Float,Integer>,SortedMap<Float,Integer>
- Direct Known Subclasses:
Float2IntAVLTreeMap,Float2IntLinkedOpenHashMap,Float2IntRBTreeMap
public abstract class AbstractFloat2IntSortedMap extends AbstractFloat2IntMap implements Float2IntSortedMap
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2IntMap
AbstractFloat2IntMap.BasicEntry, AbstractFloat2IntMap.BasicEntrySetNested classes/interfaces inherited from interface it.unimi.dsi.fastutil.floats.Float2IntMap
Float2IntMap.Entry, Float2IntMap.FastEntrySetNested classes/interfaces inherited from interface it.unimi.dsi.fastutil.floats.Float2IntSortedMap
Float2IntSortedMap.FastSortedEntrySet -
Method Summary
Modifier and Type Method Description FloatSortedSetkeySet()Returns a type-specific-set view of the keys of this map.IntCollectionvalues()Returns a type-specific-set view of the values of this map.Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2IntMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toStringMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloat2IntFunction
defaultReturnValue, defaultReturnValueMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2IntFunction
applyAsInt, get, put, removeMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2IntMap
clear, compute, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentNullable, computeIfAbsentPartial, computeIfPresent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, get, getOrDefault, getOrDefault, merge, merge, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, sizeMethods inherited from interface it.unimi.dsi.fastutil.floats.Float2IntSortedMap
comparator, entrySet, firstFloatKey, firstKey, float2IntEntrySet, headMap, headMap, lastFloatKey, lastKey, subMap, subMap, tailMap, tailMap
-
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 interfaceFloat2IntMap- Specified by:
keySetin interfaceFloat2IntSortedMap- Specified by:
keySetin interfaceMap<Float,Integer>- Specified by:
keySetin interfaceSortedMap<Float,Integer>- Overrides:
keySetin classAbstractFloat2IntMap- Returns:
- a sorted set view of the keys of this map; it may be safely cast to a type-specific interface.
- See Also:
Map.keySet()
-
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 interfaceFloat2IntMap- Specified by:
valuesin interfaceFloat2IntSortedMap- Specified by:
valuesin interfaceMap<Float,Integer>- Specified by:
valuesin interfaceSortedMap<Float,Integer>- Overrides:
valuesin classAbstractFloat2IntMap- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
Map.values()
-