package com.google.common.collect; import java.util.Collection; import java.util.Iterator; import java.util.Set; /* loaded from: classes2.dex */ public interface Multiset extends Collection { /* loaded from: classes2.dex */ public interface Entry { boolean equals(Object obj); int getCount(); E getElement(); int hashCode(); String toString(); } int add(E e, int i); boolean add(E e); boolean contains(Object obj); @Override // java.util.Collection boolean containsAll(Collection collection); int count(Object obj); Set elementSet(); Set> entrySet(); boolean equals(Object obj); int hashCode(); Iterator iterator(); int remove(Object obj, int i); boolean remove(Object obj); boolean removeAll(Collection collection); boolean retainAll(Collection collection); int setCount(E e, int i); boolean setCount(E e, int i, int i2); int size(); String toString(); }