All Methods Static Methods Instance Methods Concrete Methods
Modifier and Type |
Method and Description |
Map.Entry<K,V> |
ceilingEntry(K key) |
K |
ceilingKey(K key) |
void |
clear() |
Comparator<? super K> |
comparator() |
V |
compute(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
V |
computeIfAbsent(K key,
Function<? super K,? extends V> mappingFunction) |
V |
computeIfPresent(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
org.pcollections.PSortedSet<K> |
descendingKeySet() |
PCollectionsImmutableNavigableMap<K,V> |
descendingMap() |
static <K extends Comparable<? super K>,V> PCollectionsImmutableNavigableMap<K,V> |
empty() |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object o) |
Map.Entry<K,V> |
firstEntry() |
K |
firstKey() |
Map.Entry<K,V> |
floorEntry(K key) |
K |
floorKey(K key) |
void |
forEach(BiConsumer<? super K,? super V> action) |
V |
get(Object key) |
V |
getOrDefault(Object key,
V defaultValue) |
int |
hashCode() |
PCollectionsImmutableNavigableMap<K,V> |
headMap(K toKey) |
PCollectionsImmutableNavigableMap<K,V> |
headMap(K toKey,
boolean inclusive) |
Map.Entry<K,V> |
higherEntry(K key) |
K |
higherKey(K key) |
boolean |
isEmpty() |
PCollectionsImmutableNavigableSet<K> |
keySet() |
Map.Entry<K,V> |
lastEntry() |
K |
lastKey() |
Map.Entry<K,V> |
lowerEntry(K key) |
K |
lowerKey(K key) |
V |
merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction) |
PCollectionsImmutableNavigableSet<K> |
navigableKeySet() |
Map.Entry<K,V> |
pollFirstEntry() |
Map.Entry<K,V> |
pollLastEntry() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
V |
putIfAbsent(K key,
V value) |
V |
remove(Object key) |
boolean |
remove(Object key,
Object value) |
ImmutableNavigableMap<K,V> |
removed(K key) |
V |
replace(K key,
V value) |
boolean |
replace(K key,
V oldValue,
V newValue) |
void |
replaceAll(BiFunction<? super K,? super V,? extends V> function) |
static <K extends Comparable<? super K>,V> PCollectionsImmutableNavigableMap<K,V> |
singleton(K key,
V value) |
int |
size() |
PCollectionsImmutableNavigableMap<K,V> |
subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive) |
PCollectionsImmutableNavigableMap<K,V> |
subMap(K fromKey,
K toKey) |
PCollectionsImmutableNavigableMap<K,V> |
tailMap(K fromKey) |
PCollectionsImmutableNavigableMap<K,V> |
tailMap(K fromKey,
boolean inclusive) |
String |
toString() |
PCollectionsImmutableNavigableMap<K,V> |
updated(K key,
V value) |
Collection<V> |
values() |