public static class Char2LongSortedMaps.Singleton extends Char2LongMaps.Singleton implements Char2LongSortedMap, Serializable, Cloneable
This class may be useful to implement your own in case you subclass a type-specific sorted map.
Char2LongSortedMap.FastSortedEntrySetChar2LongMap.Entry, Char2LongMap.FastEntrySet| Modifier and Type | Method and Description |
|---|---|
ObjectSortedSet<Char2LongMap.Entry> |
char2LongEntrySet()
Returns a type-specific set view of the mappings contained in this map.
|
CharComparator |
comparator()
Returns the comparator associated with this sorted set, or null if it
uses its keys' natural ordering.
|
ObjectSortedSet<Map.Entry<Character,Long>> |
entrySet()
Deprecated.
Please use the corresponding type-specific method
instead.
|
char |
firstCharKey()
Returns the first (lowest) key currently in this map.
|
Character |
firstKey()
Deprecated.
Please use the corresponding type-specific method
instead.
|
Char2LongSortedMap |
headMap(char to)
Returns a view of the portion of this sorted map whose keys are strictly
less than
toKey. |
Char2LongSortedMap |
headMap(Character oto)
Deprecated.
Please use the corresponding type-specific method
instead.
|
CharSortedSet |
keySet()
Returns a
Set view of the keys contained in this map. |
char |
lastCharKey()
Returns the last (highest) key currently in this map.
|
Character |
lastKey()
Deprecated.
Please use the corresponding type-specific method
instead.
|
Char2LongSortedMap |
subMap(Character ofrom,
Character oto)
Deprecated.
Please use the corresponding type-specific method
instead.
|
Char2LongSortedMap |
subMap(char from,
char to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Char2LongSortedMap |
tailMap(char from)
Returns a view of the portion of this sorted map whose keys are greater
than or equal to
fromKey. |
Char2LongSortedMap |
tailMap(Character ofrom)
Deprecated.
Please use the corresponding type-specific method
instead.
|
containsValue, containsValue, equals, hashCode, isEmpty, putAll, toString, valuesclone, containsKey, get, sizedefaultReturnValue, defaultReturnValuevaluesclear, compute, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentNullable, computeIfAbsentPartial, computeIfPresent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, get, getOrDefault, getOrDefault, merge, merge, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, sizeapplyAsLong, get, put, removepublic CharComparator comparator()
Char2LongSortedMap
Note that this specification strengthens the one given in
SortedMap.comparator().
comparator in interface Char2LongSortedMapcomparator in interface SortedMap<Character,Long>null if this map uses the natural ordering
of its keysSortedMap.comparator()public ObjectSortedSet<Char2LongMap.Entry> char2LongEntrySet()
Char2LongMap
This method is necessary because there is no inheritance along type
parameters: it is thus impossible to strengthen Map.entrySet() so
that it returns an ObjectSet of
type-specific entries (the latter makes it possible to access keys and
values with type-specific methods).
char2LongEntrySet in interface Char2LongMapchar2LongEntrySet in interface Char2LongSortedMapchar2LongEntrySet in class Char2LongMaps.SingletonMap.entrySet()@Deprecated public ObjectSortedSet<Map.Entry<Character,Long>> entrySet()
Note that this specification strengthens the one given in
Map.entrySet().
entrySet in interface Char2LongMapentrySet in interface Char2LongSortedMapentrySet in interface Map<Character,Long>entrySet in interface SortedMap<Character,Long>entrySet in class Char2LongMaps.SingletonMap.entrySet()public CharSortedSet keySet()
Char2LongMapSet view of the keys contained in this map.
The set is backed by the map, so changes to the map are
reflected in the set, and vice-versa. If the map is modified
while an iteration over the set is in progress (except through
the iterator's own remove operation), the results of
the iteration are undefined. The set supports element removal,
which removes the corresponding mapping from the map, via the
Iterator.remove, Set.remove,
removeAll, retainAll, and clear
operations. It does not support the add or addAll
operations.
Note that this specification strengthens the one given in
Map.keySet().
keySet in interface Char2LongMapkeySet in interface Char2LongSortedMapkeySet in interface Map<Character,Long>keySet in interface SortedMap<Character,Long>keySet in class Char2LongMaps.SingletonMap.keySet()public Char2LongSortedMap subMap(char from, char to)
Char2LongSortedMapfromKey, inclusive, to toKey, exclusive.
Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object).
subMap in interface Char2LongSortedMapSortedMap.subMap(Object,Object)public Char2LongSortedMap headMap(char to)
Char2LongSortedMaptoKey.
Note that this specification strengthens the one given in
SortedMap.headMap(Object).
headMap in interface Char2LongSortedMapSortedMap.headMap(Object)public Char2LongSortedMap tailMap(char from)
Char2LongSortedMapfromKey.
Note that this specification strengthens the one given in
SortedMap.tailMap(Object).
tailMap in interface Char2LongSortedMapSortedMap.tailMap(Object)public char firstCharKey()
Char2LongSortedMapfirstCharKey in interface Char2LongSortedMapSortedMap.firstKey()public char lastCharKey()
Char2LongSortedMaplastCharKey in interface Char2LongSortedMapSortedMap.lastKey()@Deprecated public Char2LongSortedMap headMap(Character oto)
toKey. The returned map is backed
by this map, so changes in the returned map are reflected in
this map, and vice-versa. The returned map supports all
optional map operations that this map supports.
The returned map will throw an IllegalArgumentException
on an attempt to insert a key outside its range.
Note that this specification strengthens the one given in
SortedMap.headMap(Object).
@Deprecated public Char2LongSortedMap tailMap(Character ofrom)
fromKey. The returned map is
backed by this map, so changes in the returned map are
reflected in this map, and vice-versa. The returned map
supports all optional map operations that this map supports.
The returned map will throw an IllegalArgumentException
on an attempt to insert a key outside its range.
Note that this specification strengthens the one given in
SortedMap.tailMap(Object).
@Deprecated public Char2LongSortedMap subMap(Character ofrom, Character oto)
fromKey, inclusive, to toKey, exclusive. (If
fromKey and toKey are equal, the returned map
is empty.) The returned map is backed by this map, so changes
in the returned map are reflected in this map, and vice-versa.
The returned map supports all optional map operations that this
map supports.
The returned map will throw an IllegalArgumentException
on an attempt to insert a key outside its range.
Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object).
subMap in interface Char2LongSortedMapsubMap in interface SortedMap<Character,Long>ofrom - low endpoint (inclusive) of the keys in the returned mapoto - high endpoint (exclusive) of the keys in the returned mapfromKey, inclusive, to toKey, exclusive@Deprecated public Character firstKey()
@Deprecated public Character lastKey()