it.unimi.dsi.fastutil.floats
Interface Float2IntSortedMap

All Superinterfaces:
Float2IntMap, Map, SortedMap
All Known Implementing Classes:
Float2IntAVLTreeMap, Float2IntLinkedOpenHashMap, Float2IntRBTreeMap

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

headMap

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

tailMap

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

firstFloatKey

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

lastFloatKey

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