| Package | Description |
|---|---|
| io.atlassian.util.concurrent |
| Modifier and Type | Method and Description |
|---|---|
CopyOnWriteSortedMap<K,V> |
CopyOnWriteSortedMap.Builder.newTreeMap() |
static <K,V> CopyOnWriteSortedMap<K,V> |
CopyOnWriteSortedMap.newTreeMap()
Create a new
CopyOnWriteSortedMap
where the underlying map instances are TreeMap and the
sort uses the key's natural order. |
static <K,V> CopyOnWriteSortedMap<K,V> |
CopyOnWriteSortedMap.newTreeMap(Comparator<? super K> comparator)
Create a new
CopyOnWriteSortedMap
where the underlying map instances are TreeMap. |
static <K,V> CopyOnWriteSortedMap<K,V> |
CopyOnWriteSortedMap.newTreeMap(Map<? extends K,? extends V> map)
Create a new
CopyOnWriteSortedMap
where the underlying map instances are TreeMap, the sort
uses the key's natural order and the initial values are supplied. |
static <K,V> CopyOnWriteSortedMap<K,V> |
CopyOnWriteSortedMap.newTreeMap(Map<? extends K,? extends V> map,
Comparator<? super K> comparator)
Create a new
CopyOnWriteSortedMap
where the underlying map instances are TreeMap, the sort
uses the key's natural order and the initial values are supplied. |
Copyright © 2016 Atlassian. All rights reserved.