public interface Byte2CharOrderedMap extends Byte2CharMap
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Byte2CharOrderedMap.FastOrderedSet
Fast Ordered Entry Set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
|
Byte2CharMap.BuilderCache, Byte2CharMap.Entry, Byte2CharMap.FastEntrySet, Byte2CharMap.MapBuilder| Modifier and Type | Method and Description |
|---|---|
ObjectOrderedSet<Byte2CharMap.Entry> |
byte2CharEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
Byte2CharOrderedMap |
copy()
A Function that does a shallow clone of the Map itself.
|
byte |
firstByteKey()
A method to get the first Key of a Map.
|
char |
firstCharValue()
A method to get the first Value of a Map.
|
char |
getAndMoveToFirst(byte key)
A Specific get method that allows to move teh given key/value int the first index.
|
char |
getAndMoveToLast(byte key)
A Specific get method that allows to move teh given key/value int the last index.
|
ByteOrderedSet |
keySet() |
byte |
lastByteKey()
A method to get the last Key of a Map.
|
char |
lastCharValue()
A method to get the last Value of a Map.
|
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.
|
char |
putAndMoveToFirst(byte key,
char value)
A customized put method that allows you to insert into the first index.
|
char |
putAndMoveToLast(byte key,
char value)
A customized put method that allows you to insert into the last index.
|
default Byte2CharOrderedMap |
synchronize()
Creates a Wrapped SortedMap that is Synchronized
|
default Byte2CharOrderedMap |
synchronize(java.lang.Object mutex)
Creates a Wrapped SortedMap that is Synchronized
|
default Byte2CharOrderedMap |
unmodifiable()
Creates a Wrapped SortedMap that is unmodifiable
|
addTo, addToAll, applyAsChar, builder, compute, computeChar, computeCharIfAbsent, computeCharIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllChar, mergeChar, put, put, put, put, putAll, putAll, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeOrDefault, replace, replace, replace, replace, replaceAll, replaceChars, replaceChars, setDefaultReturnValue, subFrom, supplyCharIfAbsent, valueschar putAndMoveToFirst(byte key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)char putAndMoveToLast(byte key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)boolean moveToFirst(byte key)
key - that should be moved to the first indexboolean moveToLast(byte key)
key - that should be moved to the first lastchar getAndMoveToFirst(byte key)
key - that is searched forchar getAndMoveToLast(byte key)
key - that is searched forbyte firstByteKey()
byte pollFirstByteKey()
byte lastByteKey()
byte pollLastByteKey()
char firstCharValue()
char lastCharValue()
Byte2CharOrderedMap copy()
Byte2CharMapcopy in interface Byte2CharMapByteOrderedSet keySet()
keySet in interface Byte2CharMapkeySet in interface java.util.Map<java.lang.Byte,java.lang.Character>ObjectOrderedSet<Byte2CharMap.Entry> byte2CharEntrySet()
Byte2CharMapbyte2CharEntrySet in interface Byte2CharMapdefault Byte2CharOrderedMap synchronize()
synchronize in interface Byte2CharMapByte2CharMaps.synchronize(speiger.src.collections.bytes.maps.interfaces.Byte2CharMap)default Byte2CharOrderedMap synchronize(java.lang.Object mutex)
synchronize in interface Byte2CharMapmutex - is the controller of the synchronization blockByte2CharMaps.synchronize(speiger.src.collections.bytes.maps.interfaces.Byte2CharMap)default Byte2CharOrderedMap unmodifiable()
unmodifiable in interface Byte2CharMapByte2CharMaps.unmodifiable(speiger.src.collections.bytes.maps.interfaces.Byte2CharMap)