public interface Long2CharOrderedMap extends Long2CharMap
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Long2CharOrderedMap.FastOrderedSet
Fast Ordered Entry Set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
|
Long2CharMap.BuilderCache, Long2CharMap.Entry, Long2CharMap.FastEntrySet, Long2CharMap.MapBuilder| Modifier and Type | Method and Description |
|---|---|
Long2CharOrderedMap |
copy()
A Function that does a shallow clone of the Map itself.
|
char |
firstCharValue()
A method to get the first Value of a Map.
|
long |
firstLongKey()
A method to get the first Key of a Map.
|
char |
getAndMoveToFirst(long key)
A Specific get method that allows to move teh given key/value int the first index.
|
char |
getAndMoveToLast(long key)
A Specific get method that allows to move teh given key/value int the last index.
|
LongOrderedSet |
keySet() |
char |
lastCharValue()
A method to get the last Value of a Map.
|
long |
lastLongKey()
A method to get the last Key of a Map.
|
ObjectOrderedSet<Long2CharMap.Entry> |
long2CharEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
boolean |
moveToFirst(long key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(long key)
A specific move method to move a given key/value to the last index.
|
long |
pollFirstLongKey()
A method to get and remove the first Key of a Map.
|
long |
pollLastLongKey()
A method to get and remove the last Key of a Map.
|
char |
putAndMoveToFirst(long key,
char value)
A customized put method that allows you to insert into the first index.
|
char |
putAndMoveToLast(long key,
char value)
A customized put method that allows you to insert into the last index.
|
default Long2CharOrderedMap |
synchronize()
Creates a Wrapped SortedMap that is Synchronized
|
default Long2CharOrderedMap |
synchronize(java.lang.Object mutex)
Creates a Wrapped SortedMap that is Synchronized
|
default Long2CharOrderedMap |
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(long key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)char putAndMoveToLast(long key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)boolean moveToFirst(long key)
key - that should be moved to the first indexboolean moveToLast(long key)
key - that should be moved to the first lastchar getAndMoveToFirst(long key)
key - that is searched forchar getAndMoveToLast(long key)
key - that is searched forlong firstLongKey()
long pollFirstLongKey()
long lastLongKey()
long pollLastLongKey()
char firstCharValue()
char lastCharValue()
Long2CharOrderedMap copy()
Long2CharMapcopy in interface Long2CharMapLongOrderedSet keySet()
keySet in interface Long2CharMapkeySet in interface java.util.Map<java.lang.Long,java.lang.Character>ObjectOrderedSet<Long2CharMap.Entry> long2CharEntrySet()
Long2CharMaplong2CharEntrySet in interface Long2CharMapdefault Long2CharOrderedMap synchronize()
synchronize in interface Long2CharMapLong2CharMaps.synchronize(speiger.src.collections.longs.maps.interfaces.Long2CharMap)default Long2CharOrderedMap synchronize(java.lang.Object mutex)
synchronize in interface Long2CharMapmutex - is the controller of the synchronization blockLong2CharMaps.synchronize(speiger.src.collections.longs.maps.interfaces.Long2CharMap)default Long2CharOrderedMap unmodifiable()
unmodifiable in interface Long2CharMapLong2CharMaps.unmodifiable(speiger.src.collections.longs.maps.interfaces.Long2CharMap)