it.unimi.dsi.fastutil.bytes
Class Byte2LongSortedMaps.Singleton
java.lang.Object
it.unimi.dsi.fastutil.bytes.AbstractByte2LongMap
it.unimi.dsi.fastutil.bytes.Byte2LongMaps.Singleton
it.unimi.dsi.fastutil.bytes.Byte2LongSortedMaps.Singleton
- All Implemented Interfaces:
- Byte2LongMap, Byte2LongSortedMap, Cloneable, Map, Serializable, SortedMap
- Enclosing class:
- Byte2LongSortedMaps
- public static class Byte2LongSortedMaps.Singleton
- extends Byte2LongMaps.Singleton
- implements Byte2LongSortedMap, Serializable, Cloneable
An immutable class representing a type-specific singleton sorted map.
This class may be useful to implement your own in case you subclass
a type-specific sorted map.
- See Also:
- Serialized Form
Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByte2LongMap |
clear, containsKey, containsValue, defaultReturnValue, defaultReturnValue, equals, get, getDefRetValue, hashCode, isEmpty, put, put, remove, remove, setDefRetValue, toString |
Methods inherited from interface java.util.Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, put, putAll, remove, size, values |
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
comparator
public Comparator comparator()
- Specified by:
comparator
in interface SortedMap
keySet
public Set keySet()
- Description copied from class:
AbstractByte2LongMap
- Returns a type-specific-set view of the keys of this map.
The view is backed by the set returned by Map.entrySet()
. Note that
no attempt is made at caching the result of this method, as this would
require adding some attributes that lightweight implementations would
not need. Subclasses may easily override this policy by calling
this method and caching the result, but implementors are encouraged to
write more efficient ad-hoc implementations.
- Specified by:
keySet
in interface Map
- Overrides:
keySet
in class Byte2LongMaps.Singleton
subMap
public Byte2LongSortedMap subMap(byte from,
byte to)
- Specified by:
subMap
in interface Byte2LongSortedMap
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Byte2LongSortedMap headMap(byte to)
- Specified by:
headMap
in interface Byte2LongSortedMap
- See Also:
SortedMap.headMap(Object)
tailMap
public Byte2LongSortedMap tailMap(byte from)
- Specified by:
tailMap
in interface Byte2LongSortedMap
- See Also:
SortedMap.tailMap(Object)
firstByteKey
public byte firstByteKey()
- Specified by:
firstByteKey
in interface Byte2LongSortedMap
- See Also:
SortedMap.firstKey()
lastByteKey
public byte lastByteKey()
- Specified by:
lastByteKey
in interface Byte2LongSortedMap
- See Also:
SortedMap.lastKey()
headMap
public SortedMap headMap(Object oto)
- Specified by:
headMap
in interface SortedMap
tailMap
public SortedMap tailMap(Object ofrom)
- Specified by:
tailMap
in interface SortedMap
subMap
public SortedMap subMap(Object ofrom,
Object oto)
- Specified by:
subMap
in interface SortedMap
firstKey
public Object firstKey()
- Specified by:
firstKey
in interface SortedMap
lastKey
public Object lastKey()
- Specified by:
lastKey
in interface SortedMap