it.unimi.dsi.fastutil.floats
Interface Float2LongSortedMap

All Superinterfaces:
Float2LongMap, Map, SortedMap
All Known Implementing Classes:
AbstractFloat2LongSortedMap, Float2LongAVLTreeMap, Float2LongLinkedOpenHashMap, Float2LongRBTreeMap, Float2LongSortedMaps.EmptySortedMap, Float2LongSortedMaps.Singleton, Float2LongSortedMaps.SynchronizedSortedMap

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

headMap

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

tailMap

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

firstFloatKey

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

lastFloatKey

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