Uses of Class
com.google.common.collect.HashMultiset

Packages that use HashMultiset
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of HashMultiset in com.google.common.collect
 

Methods in com.google.common.collect that return HashMultiset
static
<E> HashMultiset<E>
Multisets.newHashMultiset()
          Creates an empty HashMultiset using the default initial capacity (16 distinct elements).
static
<E> HashMultiset<E>
Multisets.newHashMultiset(E... elements)
          Creates a HashMultiset containing the specified elements, using the default initial capacity (16 distinct elements).
static
<E> HashMultiset<E>
Multisets.newHashMultiset(java.lang.Iterable<? extends E> elements)
          Creates a HashMultiset containing the specified elements.
 



Copyright © 2008 Google. All Rights Reserved.