Class AbstractObject2IntSortedMap<K>
- All Implemented Interfaces:
Function<K,Integer>,Object2IntFunction<K>,Object2IntMap<K>,Object2IntSortedMap<K>,Serializable,Function<K,Integer>,ToIntFunction<K>,Map<K,Integer>,SortedMap<K,Integer>
- Direct Known Subclasses:
Object2IntAVLTreeMap,Object2IntLinkedOpenCustomHashMap,Object2IntLinkedOpenHashMap,Object2IntRBTreeMap
public abstract class AbstractObject2IntSortedMap<K> extends AbstractObject2IntMap<K> implements Object2IntSortedMap<K>
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.objects.AbstractObject2IntMap
AbstractObject2IntMap.BasicEntry<K>, AbstractObject2IntMap.BasicEntrySet<K>Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K extends Object,V extends Object>Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
Object2IntMap.Entry<K>, Object2IntMap.FastEntrySet<K>Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2IntSortedMap
Object2IntSortedMap.FastSortedEntrySet<K> -
Method Summary
Modifier and Type Method Description ObjectSortedSet<K>keySet()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.objects.AbstractObject2IntMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toStringMethods inherited from class it.unimi.dsi.fastutil.objects.AbstractObject2IntFunction
defaultReturnValue, defaultReturnValueMethods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, equals, forEach, get, hashCode, isEmpty, put, putAll, remove, replaceAll, sizeMethods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntFunction
applyAsInt, getInt, put, removeIntMethods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
clear, computeInt, computeIntIfAbsent, computeIntIfAbsentPartial, computeIntIfPresent, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, get, getOrDefault, getOrDefault, merge, mergeInt, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, sizeMethods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntSortedMap
comparator, entrySet, headMap, object2IntEntrySet, subMap, 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 interfaceMap<K,Integer>- Specified by:
keySetin interfaceObject2IntMap<K>- Specified by:
keySetin interfaceObject2IntSortedMap<K>- Specified by:
keySetin interfaceSortedMap<K,Integer>- Overrides:
keySetin classAbstractObject2IntMap<K>- 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 interfaceMap<K,Integer>- Specified by:
valuesin interfaceObject2IntMap<K>- Specified by:
valuesin interfaceObject2IntSortedMap<K>- Specified by:
valuesin interfaceSortedMap<K,Integer>- Overrides:
valuesin classAbstractObject2IntMap<K>- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
Map.values()
-