public interface Int2CharOrderedMap extends Int2CharMap
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Int2CharOrderedMap.FastOrderedSet
Fast Ordered Entry Set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
|
Int2CharMap.BuilderCache, Int2CharMap.Entry, Int2CharMap.FastEntrySet, Int2CharMap.MapBuilder| Modifier and Type | Method and Description |
|---|---|
Int2CharOrderedMap |
copy()
A Function that does a shallow clone of the Map itself.
|
char |
firstCharValue()
A method to get the first Value of a Map.
|
int |
firstIntKey()
A method to get the first Key of a Map.
|
char |
getAndMoveToFirst(int key)
A Specific get method that allows to move teh given key/value int the first index.
|
char |
getAndMoveToLast(int key)
A Specific get method that allows to move teh given key/value int the last index.
|
ObjectOrderedSet<Int2CharMap.Entry> |
int2CharEntrySet()
Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
|
IntOrderedSet |
keySet() |
char |
lastCharValue()
A method to get the last Value of a Map.
|
int |
lastIntKey()
A method to get the last Key of a Map.
|
boolean |
moveToFirst(int key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(int key)
A specific move method to move a given key/value to the last index.
|
int |
pollFirstIntKey()
A method to get and remove the first Key of a Map.
|
int |
pollLastIntKey()
A method to get and remove the last Key of a Map.
|
char |
putAndMoveToFirst(int key,
char value)
A customized put method that allows you to insert into the first index.
|
char |
putAndMoveToLast(int key,
char value)
A customized put method that allows you to insert into the last index.
|
default Int2CharOrderedMap |
synchronize()
Creates a Wrapped SortedMap that is Synchronized
|
default Int2CharOrderedMap |
synchronize(java.lang.Object mutex)
Creates a Wrapped SortedMap that is Synchronized
|
default Int2CharOrderedMap |
unmodifiable()
Creates a Wrapped SortedMap that is unmodifiable
|
addTo, addToAll, builder, compute, computeChar, computeCharIfAbsent, computeCharIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, forEach, get, get, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllChar, mergeChar, 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(int key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)char putAndMoveToLast(int key,
char value)
key - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)boolean moveToFirst(int key)
key - that should be moved to the first indexboolean moveToLast(int key)
key - that should be moved to the first lastchar getAndMoveToFirst(int key)
key - that is searched forchar getAndMoveToLast(int key)
key - that is searched forint firstIntKey()
int pollFirstIntKey()
int lastIntKey()
int pollLastIntKey()
char firstCharValue()
char lastCharValue()
Int2CharOrderedMap copy()
Int2CharMapcopy in interface Int2CharMapIntOrderedSet keySet()
keySet in interface Int2CharMapkeySet in interface java.util.Map<java.lang.Integer,java.lang.Character>ObjectOrderedSet<Int2CharMap.Entry> int2CharEntrySet()
Int2CharMapint2CharEntrySet in interface Int2CharMapdefault Int2CharOrderedMap synchronize()
synchronize in interface Int2CharMapInt2CharMaps.synchronize(speiger.src.collections.ints.maps.interfaces.Int2CharMap)default Int2CharOrderedMap synchronize(java.lang.Object mutex)
synchronize in interface Int2CharMapmutex - is the controller of the synchronization blockInt2CharMaps.synchronize(speiger.src.collections.ints.maps.interfaces.Int2CharMap)default Int2CharOrderedMap unmodifiable()
unmodifiable in interface Int2CharMapInt2CharMaps.unmodifiable(speiger.src.collections.ints.maps.interfaces.Int2CharMap)