Modifier and type | Action and description |
---|---|
abstract ConcurrentCollection<T> | newCollection
Create a concurrent collection. |
abstract ConcurrentCollection<T> | newCollection(Collection<E>)
Create a concurrent collection. |
abstract ConcurrentList<T> | newList
Create a concurrent list. |
abstract ConcurrentList<T> | newList(List<E>)
Create a concurrent list. |
abstract java.util.concurrent.ConcurrentMap<K,V> | newMap(Comparator<T>)
Create a concurrent map. |
abstract java.util.concurrent.ConcurrentMap<K,V> | newMap(Comparator<T>,Map<K,V>)
Create a concurrent map. |
abstract ConcurrentSet<T> | newSet(Comparator<T>)
Create a concurrent set. |
abstract ConcurrentSet<T> | newSet(Comparator<T>,Collection<E>)
Create a concurrent set. |
def newCollection : ConcurrentCollection<T>with T
def newCollection(Collection<E>) : ConcurrentCollection<T>with T
def newList : ConcurrentList<T>with T
def newList(List<E>) : ConcurrentList<T>with T
def newMap(Comparator<T>) : java.util.concurrent.ConcurrentMap<K,V>with K, V
def newMap(Comparator<T>,Map<K,V>) : java.util.concurrent.ConcurrentMap<K,V>with K, V
def newSet(Comparator<T>) : ConcurrentSet<T>with T
def newSet(Comparator<T>,Collection<E>) : ConcurrentSet<T>with T