public interface Float2DoubleOrderedMap extends Float2DoubleMap
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Float2DoubleOrderedMap.FastOrderedSet
Fast Ordered Entry Set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
|
Float2DoubleMap.BuilderCache, Float2DoubleMap.Entry, Float2DoubleMap.FastEntrySet, Float2DoubleMap.MapBuilder| Modifier and Type | Method and Description |
|---|---|
Float2DoubleOrderedMap |
copy()
A Function that does a shallow clone of the Map itself.
|
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
float |
firstFloatKey()
A method to get the first Key of a Map.
|
ObjectOrderedSet<Float2DoubleMap.Entry> |
float2DoubleEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
double |
getAndMoveToFirst(float key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(float key)
A Specific get method that allows to move teh given key/value int the last index.
|
FloatOrderedSet |
keySet() |
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
float |
lastFloatKey()
A method to get the last Key of a Map.
|
boolean |
moveToFirst(float key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(float key)
A specific move method to move a given key/value to the last index.
|
float |
pollFirstFloatKey()
A method to get and remove the first Key of a Map.
|
float |
pollLastFloatKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(float key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(float key,
double value)
A customized put method that allows you to insert into the last index.
|
default Float2DoubleOrderedMap |
synchronize()
Creates a Wrapped SortedMap that is Synchronized
|
default Float2DoubleOrderedMap |
synchronize(java.lang.Object mutex)
Creates a Wrapped SortedMap that is Synchronized
|
default Float2DoubleOrderedMap |
unmodifiable()
Creates a Wrapped SortedMap that is unmodifiable
|
addTo, addToAll, builder, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValue, subFrom, supplyDoubleIfAbsent, valuesdouble putAndMoveToFirst(float key,
double value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)double putAndMoveToLast(float key,
double value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)boolean moveToFirst(float key)
key - that should be moved to the first indexboolean moveToLast(float key)
key - that should be moved to the first lastdouble getAndMoveToFirst(float key)
key - that is searched fordouble getAndMoveToLast(float key)
key - that is searched forfloat firstFloatKey()
float pollFirstFloatKey()
float lastFloatKey()
float pollLastFloatKey()
double firstDoubleValue()
double lastDoubleValue()
Float2DoubleOrderedMap copy()
Float2DoubleMapcopy in interface Float2DoubleMapFloatOrderedSet keySet()
keySet in interface Float2DoubleMapkeySet in interface java.util.Map<java.lang.Float,java.lang.Double>ObjectOrderedSet<Float2DoubleMap.Entry> float2DoubleEntrySet()
Float2DoubleMapfloat2DoubleEntrySet in interface Float2DoubleMapdefault Float2DoubleOrderedMap synchronize()
synchronize in interface Float2DoubleMapFloat2DoubleMaps.synchronize(speiger.src.collections.floats.maps.interfaces.Float2DoubleMap)default Float2DoubleOrderedMap synchronize(java.lang.Object mutex)
synchronize in interface Float2DoubleMapmutex - is the controller of the synchronization blockFloat2DoubleMaps.synchronize(speiger.src.collections.floats.maps.interfaces.Float2DoubleMap)default Float2DoubleOrderedMap unmodifiable()
unmodifiable in interface Float2DoubleMapFloat2DoubleMaps.unmodifiable(speiger.src.collections.floats.maps.interfaces.Float2DoubleMap)