Class AbstractChar2IntSortedMap
- All Implemented Interfaces:
Char2IntFunction,Char2IntMap,Char2IntSortedMap,Function<Character,Integer>,Serializable,Function<Character,Integer>,IntUnaryOperator,Map<Character,Integer>,SortedMap<Character,Integer>
- Direct Known Subclasses:
Char2IntAVLTreeMap,Char2IntLinkedOpenHashMap,Char2IntRBTreeMap
public abstract class AbstractChar2IntSortedMap extends AbstractChar2IntMap implements Char2IntSortedMap
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractChar2IntMap
AbstractChar2IntMap.BasicEntry, AbstractChar2IntMap.BasicEntrySetNested classes/interfaces inherited from interface it.unimi.dsi.fastutil.chars.Char2IntMap
Char2IntMap.Entry, Char2IntMap.FastEntrySetNested classes/interfaces inherited from interface it.unimi.dsi.fastutil.chars.Char2IntSortedMap
Char2IntSortedMap.FastSortedEntrySet -
Method Summary
Modifier and Type Method Description CharSortedSetkeySet()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.chars.AbstractChar2IntMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toStringMethods inherited from class it.unimi.dsi.fastutil.chars.AbstractChar2IntFunction
defaultReturnValue, defaultReturnValueMethods inherited from interface it.unimi.dsi.fastutil.chars.Char2IntFunction
applyAsInt, get, put, removeMethods inherited from interface it.unimi.dsi.fastutil.chars.Char2IntMap
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.chars.Char2IntSortedMap
char2IntEntrySet, comparator, entrySet, firstCharKey, firstKey, headMap, headMap, lastCharKey, 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 interfaceChar2IntMap- Specified by:
keySetin interfaceChar2IntSortedMap- Specified by:
keySetin interfaceMap<Character,Integer>- Specified by:
keySetin interfaceSortedMap<Character,Integer>- Overrides:
keySetin classAbstractChar2IntMap- 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 interfaceChar2IntMap- Specified by:
valuesin interfaceChar2IntSortedMap- Specified by:
valuesin interfaceMap<Character,Integer>- Specified by:
valuesin interfaceSortedMap<Character,Integer>- Overrides:
valuesin classAbstractChar2IntMap- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
Map.values()
-