Uses of Class
com.google.common.collect.ConcurrentHashMultiset
-
Packages that use ConcurrentHashMultiset Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of ConcurrentHashMultiset in com.google.common.collect
Methods in com.google.common.collect that return ConcurrentHashMultiset Modifier and Type Method Description static <E> ConcurrentHashMultiset<E>
ConcurrentHashMultiset. create()
Creates a new, emptyConcurrentHashMultiset
using the default initial capacity, load factor, and concurrency settings.static <E> ConcurrentHashMultiset<E>
ConcurrentHashMultiset. create(MapMaker mapMaker)
Creates a new, emptyConcurrentHashMultiset
usingmapMaker
to construct the internal backing map.static <E> ConcurrentHashMultiset<E>
ConcurrentHashMultiset. create(java.lang.Iterable<? extends E> elements)
Creates a newConcurrentHashMultiset
containing the specified elements, using the default initial capacity, load factor, and concurrency settings.
-