60 lines
1.0 KiB
Java
60 lines
1.0 KiB
Java
|
package com.google.common.collect;
|
||
|
|
||
|
import java.util.Collection;
|
||
|
import java.util.Iterator;
|
||
|
import java.util.Set;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface Multiset<E> extends Collection<E> {
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface Entry<E> {
|
||
|
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<E> elementSet();
|
||
|
|
||
|
Set<Entry<E>> entrySet();
|
||
|
|
||
|
boolean equals(Object obj);
|
||
|
|
||
|
int hashCode();
|
||
|
|
||
|
Iterator<E> 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();
|
||
|
}
|