Package io.deephaven.util.datastructures
Class SortedIndexableMapWrapper<K,V>
java.lang.Object
io.deephaven.util.datastructures.SortedIndexableMapWrapper<K,V>
- All Implemented Interfaces:
io.deephaven.hash.IndexableMap<K,
,V> Map<K,
V>
public class SortedIndexableMapWrapper<K,V>
extends Object
implements io.deephaven.hash.IndexableMap<K,V>
This is a simple utility class that wraps a map, and presents it as an IndexableMap.
The getByIndex() and values() method sort the values according the passed in Comparator.
The other access methods (iteration, keySet etc. do not sort the results).
Everything that touches the values list should be synchronized.
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
computeIfAbsent
(K key, Function<? super K, ? extends V> mappingFunction) computeIfPresent
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
void
forEach
(BiConsumer<? super K, ? super V> action) getByIndex
(int index) getOrDefault
(Object key, V defaultValue) int
hashCode()
boolean
isEmpty()
keySet()
void
putIfAbsent
(K key, V value) boolean
boolean
void
replaceAll
(BiFunction<? super K, ? super V, ? extends V> function) int
size()
@NotNull Collection<V>
values()
-
Constructor Details
-
SortedIndexableMapWrapper
-
-
Method Details
-
size
public int size() -
isEmpty
public boolean isEmpty() -
containsKey
- Specified by:
containsKey
in interfaceMap<K,
V>
-
containsValue
- Specified by:
containsValue
in interfaceMap<K,
V>
-
get
-
put
-
remove
-
putAll
-
clear
public void clear() -
keySet
-
values
-
entrySet
-
equals
-
hashCode
public int hashCode() -
getOrDefault
- Specified by:
getOrDefault
in interfaceMap<K,
V>
-
forEach
-
replaceAll
- Specified by:
replaceAll
in interfaceMap<K,
V>
-
putIfAbsent
- Specified by:
putIfAbsent
in interfaceMap<K,
V>
-
remove
-
replace
-
replace
-
computeIfAbsent
- Specified by:
computeIfAbsent
in interfaceMap<K,
V>
-
computeIfPresent
- Specified by:
computeIfPresent
in interfaceMap<K,
V>
-
compute
-
merge
-
getByIndex
-