Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and
other utilities for working with collections.
|
Modifier and Type | Field and Description |
---|---|
(package private) static Serialization.FieldSetter<ConcurrentHashMultiset> |
ConcurrentHashMultiset.FieldSettersHolder.COUNT_MAP_FIELD_SETTER |
Modifier and Type | Method and Description |
---|---|
static <E> ConcurrentHashMultiset<E> |
ConcurrentHashMultiset.create()
Creates a new, empty
ConcurrentHashMultiset using the default
initial capacity, load factor, and concurrency settings. |
static <E> ConcurrentHashMultiset<E> |
ConcurrentHashMultiset.create(java.lang.Iterable<? extends E> elements)
Creates a new
ConcurrentHashMultiset containing the specified elements, using
the default initial capacity, load factor, and concurrency settings. |
static <E> ConcurrentHashMultiset<E> |
ConcurrentHashMultiset.create(MapMaker mapMaker)
Creates a new, empty
ConcurrentHashMultiset using mapMaker
to construct the internal backing map. |
(package private) ConcurrentHashMultiset<E> |
ConcurrentHashMultiset.EntrySet.multiset() |