Generated by
JDiff

Class com.google.common.collect.ForwardingMultiset

Removed Methods
boolean setCount(E, int, int)  
int setCount(E, int)  
boolean standardSetCount(E, int, int) A sensible definition of .setCount(Object, int, int) in terms of .count(Object) and .setCount(Object, int).
int standardSetCount(E, int) A sensible definition of .setCount(Object, int) in terms of .count(Object), .add(Object, int), and .remove(Object, int).
 

Added Methods
boolean setCount(E, extends, Object, int, int)  
int setCount(E, extends, Object, int)  
boolean standardSetCount(E, extends, Object, int, int) A sensible definition of .setCount(Object, int, int) in terms of .count(Object) and .setCount(Object, int).
int standardSetCount(E, extends, Object, int) A sensible definition of .setCount(Object, int) in terms of .count(Object), .add(Object, int), and .remove(Object, int).
 

Changed Methods
int add(E, extends, Object, int) Change in signature from (E, int) to (E extends Object, int).
 
boolean equals(Object) Change in signature from Object to java.lang.Object.
 
boolean standardAdd(E extends Object) Change in signature from E to (E extends Object).
A sensible definition of .add(Object) in terms of .add(Object, int).
boolean standardContains(Object) Change in signature from Object to java.lang.Object.
A sensible definition of .contains in terms of .count.
int standardCount(Object) Change in signature from Object to java.lang.Object.
A sensible, albeit inefficient, definition of .count in terms of .entrySet.
boolean standardEquals(Object) Change in signature from Object to java.lang.Object.
A sensible, albeit inefficient, definition of .equals in terms of {@code entrySet().size()} and .count.