it.unimi.dsi.fastutil.ints
Interface Int2BooleanSortedMap

All Superinterfaces:
Int2BooleanMap, Map, SortedMap
All Known Implementing Classes:
AbstractInt2BooleanSortedMap, Int2BooleanAVLTreeMap, Int2BooleanLinkedOpenHashMap, Int2BooleanRBTreeMap, Int2BooleanSortedMaps.EmptySortedMap, Int2BooleanSortedMaps.Singleton, Int2BooleanSortedMaps.SynchronizedSortedMap, Int2BooleanSortedMaps.UnmodifiableSortedMap

public interface Int2BooleanSortedMap
extends Int2BooleanMap, 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.ints.Int2BooleanMap
Int2BooleanMap.Entry
 
Method Summary
 int firstIntKey()
           
 Int2BooleanSortedMap headMap(int toKey)
           
 int lastIntKey()
           
 Int2BooleanSortedMap subMap(int fromKey, int toKey)
           
 Int2BooleanSortedMap tailMap(int fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.ints.Int2BooleanMap
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 Int2BooleanSortedMap subMap(int fromKey,
                                   int toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Int2BooleanSortedMap headMap(int toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Int2BooleanSortedMap tailMap(int fromKey)
See Also:
SortedMap.tailMap(Object)

firstIntKey

public int firstIntKey()
See Also:
SortedMap.firstKey()

lastIntKey

public int lastIntKey()
See Also:
SortedMap.lastKey()