package u;

import b0.AbstractC0399d;
import b0.D;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

/* JADX INFO: renamed from: u.a, reason: case insensitive filesystem */
/* JADX INFO: loaded from: classes.dex */
public interface InterfaceC0722a {

    /* JADX INFO: renamed from: u.a$a, reason: collision with other inner class name */
    public static final class C0098a implements InterfaceC0722a {

        /* JADX INFO: renamed from: a, reason: collision with root package name */
        private final Map f6516a = new HashMap();

        @Override // u.InterfaceC0722a
        public b a(UUID uuid) {
            return (b) this.f6516a.get(uuid);
        }

        public void b(UUID uuid, b bVar) {
            this.f6516a.put(uuid, bVar);
        }

        public boolean equals(Object obj) {
            if (obj == null || C0098a.class != obj.getClass()) {
                return false;
            }
            C0098a c0098a = (C0098a) obj;
            if (this.f6516a.size() != c0098a.f6516a.size()) {
                return false;
            }
            for (UUID uuid : this.f6516a.keySet()) {
                if (!D.a(this.f6516a.get(uuid), c0098a.f6516a.get(uuid))) {
                    return false;
                }
            }
            return true;
        }

        public int hashCode() {
            return this.f6516a.hashCode();
        }
    }

    /* JADX INFO: renamed from: u.a$b */
    public static final class b {

        /* JADX INFO: renamed from: a, reason: collision with root package name */
        public final String f6517a;

        /* JADX INFO: renamed from: b, reason: collision with root package name */
        public final byte[] f6518b;

        public b(String str, byte[] bArr) {
            this.f6517a = (String) AbstractC0399d.d(str);
            this.f6518b = (byte[]) AbstractC0399d.d(bArr);
        }

        public boolean equals(Object obj) {
            if (!(obj instanceof b)) {
                return false;
            }
            if (obj == this) {
                return true;
            }
            b bVar = (b) obj;
            return this.f6517a.equals(bVar.f6517a) && Arrays.equals(this.f6518b, bVar.f6518b);
        }

        public int hashCode() {
            return this.f6517a.hashCode() + (Arrays.hashCode(this.f6518b) * 31);
        }
    }

    /* JADX INFO: renamed from: u.a$c */
    public static final class c implements InterfaceC0722a {

        /* JADX INFO: renamed from: a, reason: collision with root package name */
        private b f6519a;

        public c(b bVar) {
            this.f6519a = bVar;
        }

        @Override // u.InterfaceC0722a
        public b a(UUID uuid) {
            return this.f6519a;
        }

        public boolean equals(Object obj) {
            if (obj == null || c.class != obj.getClass()) {
                return false;
            }
            return D.a(this.f6519a, ((c) obj).f6519a);
        }

        public int hashCode() {
            return this.f6519a.hashCode();
        }
    }

    b a(UUID uuid);
}
