package p;

import java.util.Map;

/* JADX INFO: renamed from: p.c, reason: case insensitive filesystem */
/* JADX INFO: loaded from: classes.dex */
public final class C1406c implements Map.Entry {

    /* JADX INFO: renamed from: q, reason: collision with root package name */
    public final Object f16011q;

    /* JADX INFO: renamed from: r, reason: collision with root package name */
    public final Object f16012r;

    /* JADX INFO: renamed from: s, reason: collision with root package name */
    public C1406c f16013s;

    /* JADX INFO: renamed from: t, reason: collision with root package name */
    public C1406c f16014t;

    public C1406c(Object obj, Object obj2) {
        this.f16011q = obj;
        this.f16012r = obj2;
    }

    @Override // java.util.Map.Entry
    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof C1406c)) {
            return false;
        }
        C1406c c1406c = (C1406c) obj;
        return this.f16011q.equals(c1406c.f16011q) && this.f16012r.equals(c1406c.f16012r);
    }

    @Override // java.util.Map.Entry
    public final Object getKey() {
        return this.f16011q;
    }

    @Override // java.util.Map.Entry
    public final Object getValue() {
        return this.f16012r;
    }

    @Override // java.util.Map.Entry
    public final int hashCode() {
        return this.f16011q.hashCode() ^ this.f16012r.hashCode();
    }

    @Override // java.util.Map.Entry
    public final Object setValue(Object obj) {
        throw new UnsupportedOperationException("An entry modification is not supported");
    }

    public final String toString() {
        return this.f16011q + "=" + this.f16012r;
    }
}
