it.unimi.dsi.fastutil.shorts
Interface Short2FloatSortedMap

All Superinterfaces:
Map, Short2FloatMap, SortedMap
All Known Implementing Classes:
AbstractShort2FloatSortedMap, Short2FloatAVLTreeMap, Short2FloatLinkedOpenHashMap, Short2FloatRBTreeMap, Short2FloatSortedMaps.EmptySortedMap, Short2FloatSortedMaps.Singleton, Short2FloatSortedMaps.SynchronizedSortedMap

public interface Short2FloatSortedMap
extends Short2FloatMap, SortedMap

A type-specific SortedMap; provides some additional methods that use polymorphism to reduce type juggling.

See Also:
SortedMap

Nested Class Summary
 
Nested classes inherited from class it.unimi.dsi.fastutil.shorts.Short2FloatMap
Short2FloatMap.Entry
 
Method Summary
 short firstShortKey()
           
 Short2FloatSortedMap headMap(short toKey)
           
 short lastShortKey()
           
 Short2FloatSortedMap subMap(short fromKey, short toKey)
           
 Short2FloatSortedMap tailMap(short fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2FloatMap
containsKey, containsValue, defaultReturnValue, defaultReturnValue, get, getDefRetValue, put, remove, setDefRetValue
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from interface java.util.SortedMap
comparator, firstKey, headMap, lastKey, subMap, tailMap
 

Method Detail

subMap

public Short2FloatSortedMap subMap(short fromKey,
                                   short toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Short2FloatSortedMap headMap(short toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Short2FloatSortedMap tailMap(short fromKey)
See Also:
SortedMap.tailMap(Object)

firstShortKey

public short firstShortKey()
See Also:
SortedMap.firstKey()

lastShortKey

public short lastShortKey()
See Also:
SortedMap.lastKey()