it.unimi.dsi.fastutil.objects
Class AbstractObject2ShortSortedMap<K>

java.lang.Object
  extended by it.unimi.dsi.fastutil.objects.AbstractObject2ShortFunction<K>
      extended by it.unimi.dsi.fastutil.objects.AbstractObject2ShortMap<K>
          extended by it.unimi.dsi.fastutil.objects.AbstractObject2ShortSortedMap<K>
All Implemented Interfaces:
Function<K,java.lang.Short>, Object2ShortFunction<K>, Object2ShortMap<K>, Object2ShortSortedMap<K>, java.io.Serializable, java.util.Map<K,java.lang.Short>, java.util.SortedMap<K,java.lang.Short>
Direct Known Subclasses:
Object2ShortAVLTreeMap, Object2ShortLinkedOpenCustomHashMap, Object2ShortLinkedOpenHashMap, Object2ShortRBTreeMap

public abstract class AbstractObject2ShortSortedMap<K>
extends AbstractObject2ShortMap<K>
implements Object2ShortSortedMap<K>

An abstract class providing basic methods for sorted maps implementing a type-specific interface.

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.objects.AbstractObject2ShortMap
AbstractObject2ShortMap.BasicEntry<K>
 
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2ShortSortedMap
Object2ShortSortedMap.FastSortedEntrySet<K>
 
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2ShortMap
Object2ShortMap.Entry<K>, Object2ShortMap.FastEntrySet<K>
 
Method Summary
 ObjectSortedSet<java.util.Map.Entry<K,java.lang.Short>> entrySet()
          Returns a set view of the mappings contained in this map.
 ObjectSortedSet<K> keySet()
          Returns a type-specific-sorted-set view of the keys of this map.
 ShortCollection values()
          Returns a type-specific collection view of the values contained in this map.
 
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractObject2ShortMap
containsKey, containsValue, containsValue, equals, hashCode, isEmpty, putAll, toString
 
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractObject2ShortFunction
clear, defaultReturnValue, defaultReturnValue, get, put, put, remove, removeShort
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2ShortSortedMap
comparator, headMap, object2ShortEntrySet, subMap, tailMap
 
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2ShortMap
containsValue
 
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2ShortFunction
defaultReturnValue, defaultReturnValue, getShort, put, removeShort
 
Methods inherited from interface it.unimi.dsi.fastutil.Function
clear, containsKey, get, put, remove, size
 
Methods inherited from interface java.util.SortedMap
firstKey, lastKey
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size
 

Method Detail

keySet

public ObjectSortedSet<K> keySet()
Returns a type-specific-sorted-set view of the keys of this map.

The view is backed by the sorted set returned by 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:
keySet in interface Object2ShortMap<K>
Specified by:
keySet in interface Object2ShortSortedMap<K>
Specified by:
keySet in interface java.util.Map<K,java.lang.Short>
Specified by:
keySet in interface java.util.SortedMap<K,java.lang.Short>
Overrides:
keySet in class AbstractObject2ShortMap<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

public ShortCollection values()
Returns a type-specific collection view of the values contained in this map.

The view is backed by the sorted set returned by 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:
values in interface Object2ShortMap<K>
Specified by:
values in interface Object2ShortSortedMap<K>
Specified by:
values in interface java.util.Map<K,java.lang.Short>
Specified by:
values in interface java.util.SortedMap<K,java.lang.Short>
Overrides:
values in class AbstractObject2ShortMap<K>
Returns:
a type-specific collection view of the values contained in this map.
See Also:
Map.values()

entrySet

public ObjectSortedSet<java.util.Map.Entry<K,java.lang.Short>> entrySet()
Description copied from interface: Object2ShortMap
Returns a set view of the mappings contained in this map.

Note that this specification strengthens the one given in Map.entrySet().

Specified by:
entrySet in interface Object2ShortMap<K>
Specified by:
entrySet in interface Object2ShortSortedMap<K>
Specified by:
entrySet in interface java.util.Map<K,java.lang.Short>
Specified by:
entrySet in interface java.util.SortedMap<K,java.lang.Short>
Overrides:
entrySet in class AbstractObject2ShortMap<K>
Returns:
a set view of the mappings contained in this map.
See Also:
Map.entrySet()