Generated by
JDiff

Interface com.google.common.collect.Multiset

Removed Methods
void forEach(Consumer<? super E>) {@inheritDoc}
void forEachEntry(ObjIntConsumer<? super E>) Runs the specified action for each distinct element in this multiset, and the number of occurrences of that element.
boolean remove(Object) Removes a single occurrence of the specified element from this multiset, if present.
int remove(Object, int) Removes a number of occurrences of the specified element from this multiset.
Spliterator<E> spliterator()  
 

Added Methods
boolean remove(Object) Removes a single occurrence of the specified element from this multiset, if present.
int remove(Object, int) Removes a number of occurrences of the specified element from this multiset.
 

Changed Methods
boolean contains(Object) Change in signature from Object to java.lang.Object.
Determines whether this multiset contains the specified element.
int count(Object) Change in signature from Object to java.lang.Object.
Returns the number of occurrences of an element in this multiset (the count of the element).
boolean equals(Object) Change in signature from Object to java.lang.Object.
Compares the specified object with this multiset for equality.