public static class Char2BooleanMaps.SynchronizedSortedMap extends Char2BooleanMaps.SynchronizedMap implements Char2BooleanSortedMap
AbstractChar2BooleanMap.BasicEntryjava.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Char2BooleanSortedMap.FastSortedSetChar2BooleanMap.Entry, Char2BooleanMap.FastEntrySet| Modifier and Type | Method and Description |
|---|---|
CharComparator |
comparator() |
boolean |
firstBooleanValue()
A method to get the first Value of a Map.
|
char |
firstCharKey()
A method to get the first Key of a Map.
|
java.lang.Character |
firstKey()
Deprecated.
|
boolean |
getAndMoveToFirst(char key)
A Specific get method that allows to move teh given key/value int the first index.
|
boolean |
getAndMoveToLast(char key)
A Specific get method that allows to move teh given key/value int the last index.
|
Char2BooleanSortedMap |
headMap(char toKey)
A Type Specific HeadMap method to reduce boxing/unboxing
|
Char2BooleanSortedMap |
headMap(java.lang.Character toKey)
Deprecated.
|
boolean |
lastBooleanValue()
A method to get the last Value of a Map.
|
char |
lastCharKey()
A method to get the last Key of a Map.
|
java.lang.Character |
lastKey()
Deprecated.
|
boolean |
moveToFirst(char key)
A specific move method to move a given key/value to the first index.
|
boolean |
moveToLast(char key)
A specific move method to move a given key/value to the last index.
|
char |
pollFirstCharKey()
A method to get and remove the first Key of a Map.
|
char |
pollLastCharKey()
A method to get and remove the last Key of a Map.
|
boolean |
putAndMoveToFirst(char key,
boolean value)
A customized put method that allows you to insert into the first index.
|
boolean |
putAndMoveToLast(char key,
boolean value)
A customized put method that allows you to insert into the last index.
|
Char2BooleanSortedMap |
subMap(java.lang.Character fromKey,
java.lang.Character toKey)
Deprecated.
|
Char2BooleanSortedMap |
subMap(char fromKey,
char toKey)
A Type Specific SubMap method to reduce boxing/unboxing
|
Char2BooleanSortedMap |
tailMap(char fromKey)
A Type Specific TailMap method to reduce boxing/unboxing
|
Char2BooleanSortedMap |
tailMap(java.lang.Character fromKey)
Deprecated.
|
char2BooleanEntrySet, clear, compute, computeBoolean, computeBooleanIfAbsent, computeBooleanIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, forEach, forEach, get, getBoolean, getDefaultReturnValue, getOrDefault, getOrDefault, keySet, merge, mergeAllBoolean, mergeBoolean, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remChar, remCharOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceBooleans, replaceBooleans, setDefaultReturnValue, size, valuesentrySet, equals, hashCodekeySet, valueschar2BooleanEntrySet, compute, computeBoolean, computeBooleanIfAbsent, computeBooleanIfPresent, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, entrySet, forEach, forEach, get, getBoolean, getDefaultReturnValue, getOrDefault, getOrDefault, merge, mergeAllBoolean, mergeBoolean, put, put, putAll, putAll, putAll, putAllIfAbsent, putIfAbsent, putIfAbsent, remChar, remCharOrDefault, remove, remove, remove, replace, replace, replace, replace, replaceAll, replaceBooleans, replaceBooleans, setDefaultReturnValuepublic boolean putAndMoveToFirst(char key,
boolean value)
Char2BooleanSortedMapputAndMoveToFirst in interface Char2BooleanSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean putAndMoveToLast(char key,
boolean value)
Char2BooleanSortedMapputAndMoveToLast in interface Char2BooleanSortedMapkey - the key that should be insertedvalue - the value that should be insertedMap.put(Object, Object)public boolean moveToFirst(char key)
Char2BooleanSortedMapmoveToFirst in interface Char2BooleanSortedMapkey - that should be moved to the first indexpublic boolean moveToLast(char key)
Char2BooleanSortedMapmoveToLast in interface Char2BooleanSortedMapkey - that should be moved to the first lastpublic boolean getAndMoveToFirst(char key)
Char2BooleanSortedMapgetAndMoveToFirst in interface Char2BooleanSortedMapkey - that is searched forpublic boolean getAndMoveToLast(char key)
Char2BooleanSortedMapgetAndMoveToLast in interface Char2BooleanSortedMapkey - that is searched forpublic CharComparator comparator()
comparator in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>comparator in interface Char2BooleanSortedMappublic Char2BooleanSortedMap subMap(char fromKey, char toKey)
Char2BooleanSortedMapsubMap in interface Char2BooleanSortedMapfromKey - where the submap should starttoKey - where the subMap should endpublic Char2BooleanSortedMap headMap(char toKey)
Char2BooleanSortedMapheadMap in interface Char2BooleanSortedMaptoKey - where the headMap should endpublic Char2BooleanSortedMap tailMap(char fromKey)
Char2BooleanSortedMaptailMap in interface Char2BooleanSortedMapfromKey - where the TailMap should startpublic char firstCharKey()
Char2BooleanSortedMapfirstCharKey in interface Char2BooleanSortedMappublic char pollFirstCharKey()
Char2BooleanSortedMappollFirstCharKey in interface Char2BooleanSortedMappublic char lastCharKey()
Char2BooleanSortedMaplastCharKey in interface Char2BooleanSortedMappublic char pollLastCharKey()
Char2BooleanSortedMappollLastCharKey in interface Char2BooleanSortedMappublic boolean firstBooleanValue()
Char2BooleanSortedMapfirstBooleanValue in interface Char2BooleanSortedMappublic boolean lastBooleanValue()
Char2BooleanSortedMaplastBooleanValue in interface Char2BooleanSortedMap@Deprecated public java.lang.Character firstKey()
firstKey in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>firstKey in interface Char2BooleanSortedMap@Deprecated public java.lang.Character lastKey()
lastKey in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>lastKey in interface Char2BooleanSortedMap@Deprecated public Char2BooleanSortedMap subMap(java.lang.Character fromKey, java.lang.Character toKey)
subMap in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>subMap in interface Char2BooleanSortedMap@Deprecated public Char2BooleanSortedMap headMap(java.lang.Character toKey)
headMap in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>headMap in interface Char2BooleanSortedMap@Deprecated public Char2BooleanSortedMap tailMap(java.lang.Character fromKey)
tailMap in interface java.util.SortedMap<java.lang.Character,java.lang.Boolean>tailMap in interface Char2BooleanSortedMap