Uses of Interface
com.google.common.collect.Multiset

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

Uses of Multiset in com.google.common.collect
 

Classes in com.google.common.collect that implement Multiset
 class AbstractMultiset<E>
          This class provides a skeletal implementation of the Multiset interface.
 class ConcurrentMultiset<E>
          A multiset that supports concurrent modifications and that provides atomic versions of most Multiset operations (exceptions where noted).
 class EnumMultiset<E extends Enum<E>>
          Multiset implementation backed by an EnumMap.
 class ForwardingMultiset<E>
          A multiset which forwards all its method calls to another multiset.
 class HashMultiset<E>
          Multiset implementation backed by a HashMap.
 class LinkedHashMultiset<E>
          A Multiset implementation with predictable iteration order.
 class TreeMultiset<E>
          Multiset implementation backed by a TreeMap.
 

Methods in com.google.common.collect that return Multiset
static
<E> Multiset<E>
Constraints.constrainedMultiset(Multiset<E> multiset, Constraint<? super E> constraint)
          Returns a constrained view of the specified multiset, using the specified constraint.
protected  Multiset<E> ForwardingMultiset.delegate()
           
static
<E> Multiset<E>
Multisets.emptyMultiset()
          Returns the empty multiset (immutable).
static
<E> Multiset<E>
Multisets.forSet(java.util.Set<E> set)
          Returns a multiset view of the specified set.
static
<E> Multiset<E>
Multisets.immutableMultiset()
          Returns an immutable empty Multiset.
static
<E> Multiset<E>
Multisets.immutableMultiset(E... elements)
          Returns an immutable Multiset containing the specified elements.
 Multiset<K> LinkedListMultimap.keys()
           
 Multiset<K> ForwardingMultimap.keys()
           
 Multiset<K> Multimap.keys()
          Returns a collection, which may contain duplicates, of all keys.
static
<E> Multiset<E>
Multisets.synchronizedMultiset(Multiset<E> multiset)
          Returns a synchronized (thread-safe) multiset backed by the specified multiset.
static
<E> Multiset<E>
Multisets.unmodifiableMultiset(Multiset<E> multiset)
          Returns an unmodifiable view of the specified multiset.
 

Methods in com.google.common.collect with parameters of type Multiset
static
<E> Multiset<E>
Constraints.constrainedMultiset(Multiset<E> multiset, Constraint<? super E> constraint)
          Returns a constrained view of the specified multiset, using the specified constraint.
static
<T> java.util.Comparator<T>
Multisets.frequencyOrder(Multiset<?> multiset)
          Returns a comparator that orders elements according to their increasing frequency in a multiset.
static
<E> Multiset<E>
Multisets.synchronizedMultiset(Multiset<E> multiset)
          Returns a synchronized (thread-safe) multiset backed by the specified multiset.
static
<E> Multiset<E>
Multisets.unmodifiableMultiset(Multiset<E> multiset)
          Returns an unmodifiable view of the specified multiset.
 

Constructors in com.google.common.collect with parameters of type Multiset
ForwardingMultiset(Multiset<E> delegate)
          Constructs a forwarding multiset that forwards to the provided delegate.
 



Copyright © 2008 Google. All Rights Reserved.