it.unimi.dsi.fastutil.bytes
Interface Byte2BooleanSortedMap

All Superinterfaces:
Byte2BooleanMap, Map, SortedMap
All Known Implementing Classes:
AbstractByte2BooleanSortedMap, Byte2BooleanAVLTreeMap, Byte2BooleanLinkedOpenHashMap, Byte2BooleanRBTreeMap, Byte2BooleanSortedMaps.EmptySortedMap, Byte2BooleanSortedMaps.Singleton, Byte2BooleanSortedMaps.SynchronizedSortedMap

public interface Byte2BooleanSortedMap
extends Byte2BooleanMap, 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.bytes.Byte2BooleanMap
Byte2BooleanMap.Entry
 
Method Summary
 byte firstByteKey()
           
 Byte2BooleanSortedMap headMap(byte toKey)
           
 byte lastByteKey()
           
 Byte2BooleanSortedMap subMap(byte fromKey, byte toKey)
           
 Byte2BooleanSortedMap tailMap(byte fromKey)
           
 
Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2BooleanMap
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 Byte2BooleanSortedMap subMap(byte fromKey,
                                    byte toKey)
See Also:
SortedMap.subMap(Object,Object)

headMap

public Byte2BooleanSortedMap headMap(byte toKey)
See Also:
SortedMap.headMap(Object)

tailMap

public Byte2BooleanSortedMap tailMap(byte fromKey)
See Also:
SortedMap.tailMap(Object)

firstByteKey

public byte firstByteKey()
See Also:
SortedMap.firstKey()

lastByteKey

public byte lastByteKey()
See Also:
SortedMap.lastKey()