it.unimi.dsi.fastutil.doubles
Interface Double2ObjectSortedMap

All Superinterfaces:
Double2ObjectMap, Map, SortedMap
All Known Implementing Classes:
AbstractDouble2ObjectSortedMap, Double2ObjectAVLTreeMap, Double2ObjectLinkedOpenHashMap, Double2ObjectRBTreeMap, Double2ObjectSortedMaps.EmptySortedMap, Double2ObjectSortedMaps.Singleton, Double2ObjectSortedMaps.SynchronizedSortedMap, Double2ObjectSortedMaps.UnmodifiableSortedMap

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

headMap

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

tailMap

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

firstDoubleKey

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

lastDoubleKey

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