| Constructor and Description |
|---|
BidiTreeMap() |
BidiTreeMap(Comparator<? super K> keyComparator,
Comparator<? super V> valueComparator) |
BidiTreeMap(Map<? extends K,? extends V> map) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
Comparator<? super K> |
comparator() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object obj) |
K |
firstKey() |
V |
get(Object key) |
K |
getKey(Object value) |
int |
hashCode() |
SortedMap<K,V> |
headMap(K toKey) |
BidiMap<V,K> |
inverse() |
boolean |
isEmpty() |
Set<K> |
keySet() |
K |
lastKey() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> map) |
V |
remove(Object key) |
K |
removeValue(Object value) |
int |
size() |
SortedMap<K,V> |
subMap(K fromKey,
K toKey) |
SortedMap<K,V> |
tailMap(K fromKey) |
String |
toString() |
Comparator<? super V> |
valueComparator() |
Collection<V> |
values() |
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, sizepublic BidiTreeMap()
public BidiTreeMap(Comparator<? super K> keyComparator, Comparator<? super V> valueComparator)
public Comparator<? super K> comparator()
comparator in interface SortedMap<K,V>public Comparator<? super V> valueComparator()
public SortedMap<K,V> subMap(K fromKey, K toKey)
public boolean containsKey(Object key)
containsKey in interface Map<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>public Collection<V> values()
public void putAll(Map<? extends K,? extends V> map)
public K removeValue(Object value)
removeValue in interface BidiMap<K,V>public boolean equals(Object obj)
public int hashCode()
Copyright © 2016 jetbrick. All rights reserved.