public static class Byte2DoubleMaps.SynchronizedSortedMap extends Byte2DoubleMaps.SynchronizedMap implements Byte2DoubleSortedMap
AbstractByte2DoubleMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Byte2DoubleSortedMap.FastSortedSetByte2DoubleMap.Entry, Byte2DoubleMap.FastEntrySet| Modifier and Type | Method and Description |
|---|---|
ByteComparator |
comparator() |
byte |
firstByteKey()
A method to get the first Key of a Map.
|
double |
firstDoubleValue()
A method to get the first Value of a Map.
|
java.lang.Byte |
firstKey()
Deprecated.
|
double |
getAndMoveToFirst(byte key)
A Specific get method that allows to move teh given key/value int the first index.
|
double |
getAndMoveToLast(byte key)
A Specific get method that allows to move teh given key/value int the last index.
|
Byte2DoubleSortedMap |
headMap(byte toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
Byte2DoubleSortedMap |
headMap(java.lang.Byte toKey)
Deprecated.
|
byte |
lastByteKey()
A method to get the last Key of a Map.
|
double |
lastDoubleValue()
A method to get the last Value of a Map.
|
java.lang.Byte |
lastKey()
Deprecated.
|
boolean |
moveToFirst(byte key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(byte key)
A specific move method to move a given key/value to the last index.
|
byte |
pollFirstByteKey()
A method to get and remove the first Key of a Map.
|
byte |
pollLastByteKey()
A method to get and remove the last Key of a Map.
|
double |
putAndMoveToFirst(byte key,
double value)
A customized put method that allows you to insert into the first index.
|
double |
putAndMoveToLast(byte key,
double value)
A customized put method that allows you to insert into the last index.
|
Byte2DoubleSortedMap |
subMap(byte fromKey,
byte toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Byte2DoubleSortedMap |
subMap(java.lang.Byte fromKey,
java.lang.Byte toKey)
Deprecated.
|
Byte2DoubleSortedMap |
tailMap(byte fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
Byte2DoubleSortedMap |
tailMap(java.lang.Byte fromKey)
Deprecated.
|
addTo, addToAll, byte2DoubleEntrySet, clear, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, forEach, forEach, get, getDefaultReturnValue, getDouble, getOrDefault, getOrDefault, keySet, merge, mergeAllDouble, mergeDouble, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remByte, remByteOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValue, size, valuesentrySet, equals, hashCodekeySet, valuesaddTo, addToAll, byte2DoubleEntrySet, compute, computeDouble, computeDoubleIfAbsent, computeDoubleIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, forEach, get, getDefaultReturnValue, getDouble, getOrDefault, getOrDefault, merge, mergeAllDouble, mergeDouble, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remByte, remByteOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceDoubles, replaceDoubles, setDefaultReturnValuepublic double putAndMoveToFirst(byte key,
double value)
Byte2DoubleSortedMapputAndMoveToFirst in interface Byte2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public double putAndMoveToLast(byte key,
double value)
Byte2DoubleSortedMapputAndMoveToLast in interface Byte2DoubleSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(byte key)
Byte2DoubleSortedMapmoveToFirst in interface Byte2DoubleSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(byte key)
Byte2DoubleSortedMapmoveToLast in interface Byte2DoubleSortedMapkey - that should be moved to the first lastpublic double getAndMoveToFirst(byte key)
Byte2DoubleSortedMapgetAndMoveToFirst in interface Byte2DoubleSortedMapkey - that is searched forpublic double getAndMoveToLast(byte key)
Byte2DoubleSortedMapgetAndMoveToLast in interface Byte2DoubleSortedMapkey - that is searched forpublic ByteComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>comparator in interface Byte2DoubleSortedMappublic Byte2DoubleSortedMap subMap(byte fromKey, byte toKey)
Byte2DoubleSortedMapsubMap in interface Byte2DoubleSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Byte2DoubleSortedMap headMap(byte toKey)
Byte2DoubleSortedMapheadMap in interface Byte2DoubleSortedMaptoKey - where the headMap should endpublic Byte2DoubleSortedMap tailMap(byte fromKey)
Byte2DoubleSortedMaptailMap in interface Byte2DoubleSortedMapfromKey - where the TailMap should startpublic byte firstByteKey()
Byte2DoubleSortedMapfirstByteKey in interface Byte2DoubleSortedMappublic byte pollFirstByteKey()
Byte2DoubleSortedMappollFirstByteKey in interface Byte2DoubleSortedMappublic byte lastByteKey()
Byte2DoubleSortedMaplastByteKey in interface Byte2DoubleSortedMappublic byte pollLastByteKey()
Byte2DoubleSortedMappollLastByteKey in interface Byte2DoubleSortedMappublic double firstDoubleValue()
Byte2DoubleSortedMapfirstDoubleValue in interface Byte2DoubleSortedMappublic double lastDoubleValue()
Byte2DoubleSortedMaplastDoubleValue in interface Byte2DoubleSortedMap@Deprecated public java.lang.Byte firstKey()
firstKey in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>firstKey in interface Byte2DoubleSortedMap@Deprecated public java.lang.Byte lastKey()
lastKey in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>lastKey in interface Byte2DoubleSortedMap@Deprecated public Byte2DoubleSortedMap subMap(java.lang.Byte fromKey, java.lang.Byte toKey)
subMap in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>subMap in interface Byte2DoubleSortedMap@Deprecated public Byte2DoubleSortedMap headMap(java.lang.Byte toKey)
headMap in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>headMap in interface Byte2DoubleSortedMap@Deprecated public Byte2DoubleSortedMap tailMap(java.lang.Byte fromKey)
tailMap in interface java.util.SortedMap<java.lang.Byte,java.lang.Double>tailMap in interface Byte2DoubleSortedMap