it.unimi.dsi.fastutil.chars
Interface Char2DoubleSortedMap

All Superinterfaces:
Char2DoubleMap, Map, SortedMap
All Known Implementing Classes:
AbstractChar2DoubleSortedMap, Char2DoubleAVLTreeMap, Char2DoubleLinkedOpenHashMap, Char2DoubleRBTreeMap, Char2DoubleSortedMaps.EmptySortedMap, Char2DoubleSortedMaps.Singleton, Char2DoubleSortedMaps.SynchronizedSortedMap

public interface Char2DoubleSortedMap
extends Char2DoubleMap, 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.chars.Char2DoubleMap
Char2DoubleMap.Entry
 
Method Summary
 char firstCharKey()
           
 Char2DoubleSortedMap headMap(char toKey)
           
 char lastCharKey()
           
 Char2DoubleSortedMap subMap(char fromKey, char toKey)
           
 Char2DoubleSortedMap tailMap(char fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.chars.Char2DoubleMap
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 Char2DoubleSortedMap subMap(char fromKey,
                                   char toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Char2DoubleSortedMap headMap(char toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Char2DoubleSortedMap tailMap(char fromKey)
See Also:
SortedMap.tailMap(Object)

firstCharKey

public char firstCharKey()
See Also:
SortedMap.firstKey()

lastCharKey

public char lastCharKey()
See Also:
SortedMap.lastKey()