it.unimi.dsi.fastutil.floats
Interface Float2CharSortedMap

All Superinterfaces:
Float2CharMap, Map, SortedMap
All Known Implementing Classes:
Float2CharAVLTreeMap, Float2CharLinkedOpenHashMap, Float2CharRBTreeMap

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

headMap

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

tailMap

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

firstFloatKey

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

lastFloatKey

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