it.unimi.dsi.fastutil.floats
Interface Float2ShortSortedMap

All Superinterfaces:
Float2ShortMap, Map, SortedMap
All Known Implementing Classes:
AbstractFloat2ShortSortedMap, Float2ShortAVLTreeMap, Float2ShortLinkedOpenHashMap, Float2ShortRBTreeMap, Float2ShortSortedMaps.EmptySortedMap, Float2ShortSortedMaps.Singleton, Float2ShortSortedMaps.SynchronizedSortedMap, Float2ShortSortedMaps.UnmodifiableSortedMap

public interface Float2ShortSortedMap
extends Float2ShortMap, 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.floats.Float2ShortMap
Float2ShortMap.Entry
 
Method Summary
 float firstFloatKey()
           
 Float2ShortSortedMap headMap(float toKey)
           
 float lastFloatKey()
           
 Float2ShortSortedMap subMap(float fromKey, float toKey)
           
 Float2ShortSortedMap tailMap(float fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.floats.Float2ShortMap
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 Float2ShortSortedMap subMap(float fromKey,
                                   float toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Float2ShortSortedMap headMap(float toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Float2ShortSortedMap tailMap(float fromKey)
See Also:
SortedMap.tailMap(Object)

firstFloatKey

public float firstFloatKey()
See Also:
SortedMap.firstKey()

lastFloatKey

public float lastFloatKey()
See Also:
SortedMap.lastKey()