it.unimi.dsi.fastutil.doubles
Interface Double2ShortSortedMap

All Superinterfaces:
Double2ShortMap, Map, SortedMap
All Known Implementing Classes:
Double2ShortAVLTreeMap, Double2ShortLinkedOpenHashMap, Double2ShortRBTreeMap

public interface Double2ShortSortedMap
extends Double2ShortMap, 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.doubles.Double2ShortMap
Double2ShortMap.Entry
 
Method Summary
 double firstDoubleKey()
           
 Double2ShortSortedMap headMap(double toKey)
           
 double lastDoubleKey()
           
 Double2ShortSortedMap subMap(double fromKey, double toKey)
           
 Double2ShortSortedMap tailMap(double fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.doubles.Double2ShortMap
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 Double2ShortSortedMap subMap(double fromKey,
                                    double toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Double2ShortSortedMap headMap(double toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Double2ShortSortedMap tailMap(double fromKey)
See Also:
SortedMap.tailMap(Object)

firstDoubleKey

public double firstDoubleKey()
See Also:
SortedMap.firstKey()

lastDoubleKey

public double lastDoubleKey()
See Also:
SortedMap.lastKey()