it.unimi.dsi.fastutil.shorts
Interface Short2BooleanSortedMap

All Superinterfaces:
Map, Short2BooleanMap, SortedMap
All Known Implementing Classes:
AbstractShort2BooleanSortedMap, Short2BooleanAVLTreeMap, Short2BooleanLinkedOpenHashMap, Short2BooleanRBTreeMap, Short2BooleanSortedMaps.EmptySortedMap, Short2BooleanSortedMaps.Singleton, Short2BooleanSortedMaps.SynchronizedSortedMap

public interface Short2BooleanSortedMap
extends Short2BooleanMap, 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.shorts.Short2BooleanMap
Short2BooleanMap.Entry
 
Method Summary
 short firstShortKey()
           
 Short2BooleanSortedMap headMap(short toKey)
           
 short lastShortKey()
           
 Short2BooleanSortedMap subMap(short fromKey, short toKey)
           
 Short2BooleanSortedMap tailMap(short fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2BooleanMap
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 Short2BooleanSortedMap subMap(short fromKey,
                                     short toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Short2BooleanSortedMap headMap(short toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Short2BooleanSortedMap tailMap(short fromKey)
See Also:
SortedMap.tailMap(Object)

firstShortKey

public short firstShortKey()
See Also:
SortedMap.firstKey()

lastShortKey

public short lastShortKey()
See Also:
SortedMap.lastKey()