Generated by
JDiff

Interface com.google.common.collect.Multiset

Removed Methods
boolean add(E) Adds a single occurrence of the specified element to this multiset.
int add(E, int) Adds a number of occurrences of an element to this multiset.
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.
boolean setCount(E, int, int) Conditionally sets the count of an element to a new value, as described in .setCount(Object, int), provided that the element has the expected current count.
int setCount(E, int) Adds or removes the necessary occurrences of an element such that the element attains the desired count.
 

Added Methods
boolean add(E extends Object) Adds a single occurrence of the specified element to this multiset.
int add(E, extends, Object, int) Adds a number of occurrences of an element to this multiset.
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.
boolean setCount(E, extends, Object, int, int) Conditionally sets the count of an element to a new value, as described in .setCount(Object, int), provided that the element has the expected current count.
int setCount(E, extends, Object, int) Adds or removes the necessary occurrences of an element such that the element attains the desired count.
 

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.