Package it.unimi.dsi.fastutil.objects
Class Object2ByteSortedMaps
java.lang.Object
it.unimi.dsi.fastutil.objects.Object2ByteSortedMaps
A class providing static methods and objects that do useful things with type-specific sorted
maps.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
An immutable class representing an empty type-specific sorted map.static class
An immutable class representing a type-specific singleton sorted map.static class
A synchronized wrapper class for sorted maps.static class
An unmodifiable wrapper class for sorted maps. -
Field Summary
Modifier and TypeFieldDescriptionstatic final Object2ByteSortedMaps.EmptySortedMap
An empty sorted map (immutable). -
Method Summary
Modifier and TypeMethodDescriptionstatic <K> Object2ByteSortedMap
<K> emptyMap()
Returns an empty sorted map (immutable).static <K> Comparator
<? super Map.Entry<K, ?>> entryComparator
(Comparator<? super K> comparator) Returns a comparator for entries based on a given comparator on keys.static <K> ObjectBidirectionalIterable
<Object2ByteMap.Entry<K>> fastIterable
(Object2ByteSortedMap<K> map) static <K> ObjectBidirectionalIterator
<Object2ByteMap.Entry<K>> fastIterator
(Object2ByteSortedMap<K> map) static <K> Object2ByteSortedMap
<K> singleton
(K key, byte value) Returns a type-specific immutable sorted map containing only the specified pair.static <K> Object2ByteSortedMap
<K> singleton
(K key, byte value, Comparator<? super K> comparator) Returns a type-specific immutable sorted map containing only the specified pair.static <K> Object2ByteSortedMap
<K> Returns a type-specific immutable sorted map containing only the specified pair.static <K> Object2ByteSortedMap
<K> singleton
(K key, Byte value, Comparator<? super K> comparator) Returns a type-specific immutable sorted map containing only the specified pair.static <K> Object2ByteSortedMap
<K> Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.static <K> Object2ByteSortedMap
<K> synchronize
(Object2ByteSortedMap<K> m, Object sync) Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.static <K> Object2ByteSortedMap
<K> Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
-
Field Details
-
EMPTY_MAP
An empty sorted map (immutable). It is serializable and cloneable.
-
-
Method Details
-
entryComparator
public static <K> Comparator<? super Map.Entry<K,?>> entryComparator(Comparator<? super K> comparator) Returns a comparator for entries based on a given comparator on keys.- Parameters:
comparator
- a comparator on keys.- Returns:
- the associated comparator on entries.
-
fastIterator
public static <K> ObjectBidirectionalIterator<Object2ByteMap.Entry<K>> fastIterator(Object2ByteSortedMap<K> map) Returns a bidirectional iterator that will be fast, if possible, on the entry set of the providedmap
.- Parameters:
map
- a map from which we will try to extract a (fast) bidirectional iterator on the entry set.- Returns:
- a bidirectional iterator on the entry set of the given map that will be fast, if possible.
- Since:
- 8.0.0
-
fastIterable
public static <K> ObjectBidirectionalIterable<Object2ByteMap.Entry<K>> fastIterable(Object2ByteSortedMap<K> map) Returns an iterable yielding a bidirectional iterator that will be fast, if possible, on the entry set of the providedmap
.- Parameters:
map
- a map from which we will try to extract an iterable yielding a (fast) bidirectional iterator on the entry set.- Returns:
- an iterable yielding a bidirectional iterator on the entry set of the given map that will be fast, if possible.
- Since:
- 8.0.0
-
emptyMap
Returns an empty sorted map (immutable). It is serializable and cloneable.This method provides a typesafe access to
EMPTY_MAP
.- Returns:
- an empty sorted map (immutable).
-
singleton
Returns a type-specific immutable sorted map containing only the specified pair. The returned sorted map is serializable and cloneable.Note that albeit the returned map is immutable, its default return value may be changed.
- Parameters:
key
- the only key of the returned sorted map.value
- the only value of the returned sorted map.- Returns:
- a type-specific immutable sorted map containing just the pair
<key,value>
.
-
singleton
public static <K> Object2ByteSortedMap<K> singleton(K key, Byte value, Comparator<? super K> comparator) Returns a type-specific immutable sorted map containing only the specified pair. The returned sorted map is serializable and cloneable.Note that albeit the returned map is immutable, its default return value may be changed.
- Parameters:
key
- the only key of the returned sorted map.value
- the only value of the returned sorted map.comparator
- the comparator to use in the returned sorted map.- Returns:
- a type-specific immutable sorted map containing just the pair
<key,value>
.
-
singleton
Returns a type-specific immutable sorted map containing only the specified pair. The returned sorted map is serializable and cloneable.Note that albeit the returned map is immutable, its default return value may be changed.
- Parameters:
key
- the only key of the returned sorted map.value
- the only value of the returned sorted map.- Returns:
- a type-specific immutable sorted map containing just the pair
<key,value>
.
-
singleton
public static <K> Object2ByteSortedMap<K> singleton(K key, byte value, Comparator<? super K> comparator) Returns a type-specific immutable sorted map containing only the specified pair. The returned sorted map is serializable and cloneable.Note that albeit the returned map is immutable, its default return value may be changed.
- Parameters:
key
- the only key of the returned sorted map.value
- the only value of the returned sorted map.comparator
- the comparator to use in the returned sorted map.- Returns:
- a type-specific immutable sorted map containing just the pair
<key,value>
.
-
synchronize
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.- Parameters:
m
- the sorted map to be wrapped in a synchronized sorted map.- Returns:
- a synchronized view of the specified sorted map.
- See Also:
-
synchronize
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.- Parameters:
m
- the sorted map to be wrapped in a synchronized sorted map.sync
- an object that will be used to synchronize the access to the sorted sorted map.- Returns:
- a synchronized view of the specified sorted map.
- See Also:
-
unmodifiable
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.- Parameters:
m
- the sorted map to be wrapped in an unmodifiable sorted map.- Returns:
- an unmodifiable view of the specified sorted map.
- See Also:
-