T - the type of elements maintained by this Collectionpublic interface Object2FloatSortedMap<T> extends java.util.SortedMap<T,java.lang.Float>, Object2FloatMap<T>
SortedMap interface to reduce boxing/unboxing, with a couple extra methods that allow greater control over maps.| Modifier and Type | Interface and Description |
|---|---|
static interface |
Object2FloatSortedMap.FastSortedSet<T>
Fast Sorted Entry Set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
|
Object2FloatMap.BuilderCache<T>, Object2FloatMap.Entry<T>, Object2FloatMap.FastEntrySet<T>, Object2FloatMap.MapBuilder| Modifier and Type | Method and Description |
|---|---|
java.util.Comparator<T> |
comparator() |
Object2FloatSortedMap<T> |
copy()
A Function that does a shallow clone of the Map itself.
|
float |
firstFloatValue()
A method to get the first Value of a Map.
|
Object2FloatSortedMap<T> |
headMap(T toKey) |
ObjectSortedSet<T> |
keySet() |
float |
lastFloatValue()
A method to get the last Value of a Map.
|
T |
pollFirstKey()
A method to get and remove the first Key of a Map.
|
T |
pollLastKey()
A method to get and remove the last Key of a Map.
|
Object2FloatSortedMap<T> |
subMap(T fromKey,
T toKey) |
default Object2FloatSortedMap<T> |
synchronize()
Creates a Wrapped SortedMap that is Synchronized
|
default Object2FloatSortedMap<T> |
synchronize(java.lang.Object mutex)
Creates a Wrapped SortedMap that is Synchronized
|
Object2FloatSortedMap<T> |
tailMap(T fromKey) |
default Object2FloatSortedMap<T> |
unmodifiable()
Creates a Wrapped SortedMap that is unmodifiable
|
FloatCollection |
values() |
addTo, addToAll, builder, compute, computeFloat, computeFloatIfAbsent, computeFloatIfPresent, computeIfAbsent, computeIfPresent, containsValue, containsValue, entrySet, forEach, forEach, get, getDefaultReturnValue, getFloat, getOrDefault, getOrDefault, merge, mergeAllFloat, mergeFloat, object2FloatEntrySet, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, rem, remOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceFloats, replaceFloats, setDefaultReturnValue, subFrom, supplyFloatIfAbsentjava.util.Comparator<T> comparator()
comparator in interface java.util.SortedMap<T,java.lang.Float>Object2FloatSortedMap<T> copy()
Object2FloatMapcopy in interface Object2FloatMap<T>ObjectSortedSet<T> keySet()
keySet in interface java.util.Map<T,java.lang.Float>keySet in interface Object2FloatMap<T>keySet in interface java.util.SortedMap<T,java.lang.Float>FloatCollection values()
values in interface java.util.Map<T,java.lang.Float>values in interface Object2FloatMap<T>values in interface java.util.SortedMap<T,java.lang.Float>default Object2FloatSortedMap<T> synchronize()
synchronize in interface Object2FloatMap<T>Object2FloatMaps.synchronize(speiger.src.collections.objects.maps.interfaces.Object2FloatMap<T>)default Object2FloatSortedMap<T> synchronize(java.lang.Object mutex)
synchronize in interface Object2FloatMap<T>mutex - is the controller of the synchronization blockObject2FloatMaps.synchronize(speiger.src.collections.objects.maps.interfaces.Object2FloatMap<T>)default Object2FloatSortedMap<T> unmodifiable()
unmodifiable in interface Object2FloatMap<T>Object2FloatMaps.unmodifiable(speiger.src.collections.objects.maps.interfaces.Object2FloatMap<T>)T pollFirstKey()
T pollLastKey()
float firstFloatValue()
float lastFloatValue()
Object2FloatSortedMap<T> subMap(T fromKey, T toKey)
subMap in interface java.util.SortedMap<T,java.lang.Float>Object2FloatSortedMap<T> headMap(T toKey)
headMap in interface java.util.SortedMap<T,java.lang.Float>Object2FloatSortedMap<T> tailMap(T fromKey)
tailMap in interface java.util.SortedMap<T,java.lang.Float>