package defpackage;

import java.util.Collection;
import java.util.Iterator;

/* JADX INFO: renamed from: ˁᵺˈ, reason: contains not printable characters */
/* JADX INFO: loaded from: classes3.dex */
public abstract class AbstractC0772 implements Collection, InterfaceC5238 {
    @Override // java.util.Collection
    public final boolean add(Object obj) {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public final boolean addAll(Collection collection) {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public final void clear() {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public boolean contains(Object obj) {
        if (isEmpty()) {
            return false;
        }
        Iterator<E> it = iterator();
        while (it.hasNext()) {
            if (ᵥˈᵛ.ˊᵫᵗ(it.next(), obj)) {
                return true;
            }
        }
        return false;
    }

    @Override // java.util.Collection
    public final boolean containsAll(Collection collection) {
        if (collection.isEmpty()) {
            return true;
        }
        Iterator it = collection.iterator();
        while (it.hasNext()) {
            if (!contains(it.next())) {
                return false;
            }
        }
        return true;
    }

    @Override // java.util.Collection
    public boolean isEmpty() {
        return mo2197() == 0;
    }

    @Override // java.util.Collection
    public final boolean remove(Object obj) {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public final boolean removeAll(Collection collection) {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public final boolean retainAll(Collection collection) {
        throw new UnsupportedOperationException("Operation is not supported for read-only collection");
    }

    @Override // java.util.Collection
    public final /* bridge */ int size() {
        return mo2197();
    }

    @Override // java.util.Collection
    public Object[] toArray() {
        return ᵘᵞʿⁱ.ʿٴˇ(this);
    }

    @Override // java.util.Collection
    public Object[] toArray(Object[] objArr) {
        return ᵘᵞʿⁱ.ᵠˏˏ(this, objArr);
    }

    public final String toString() {
        return AbstractC4126.m8996(this, ", ", "[", "]", new ᵨˈʼﹶ(1, this), 24);
    }

    /* JADX INFO: renamed from: ʽˈˋ */
    public abstract int mo2197();
}
